phandle            50 include/linux/of.h 	phandle phandle;
phandle           232 include/linux/of.h extern struct device_node *of_find_node_by_phandle(phandle handle);
phandle            22 include/linux/of_pdt.h 	int (*nextprop)(phandle node, char *prev, char *buf);
phandle            25 include/linux/of_pdt.h 	int (*getproplen)(phandle node, const char *prop);
phandle            26 include/linux/of_pdt.h 	int (*getproperty)(phandle node, const char *prop, char *buf,
phandle            30 include/linux/of_pdt.h 	phandle (*getchild)(phandle parent);
phandle            31 include/linux/of_pdt.h 	phandle (*getsibling)(phandle node);
phandle            34 include/linux/of_pdt.h 	int (*pkg2path)(phandle node, char *buf, const int buflen, int *len);
phandle            40 include/linux/of_pdt.h extern void of_pdt_build_devicetree(phandle root_node, struct of_pdt_ops *ops);
phandle            11 include/linux/of_reserved_mem.h 	unsigned long			phandle;
phandle           208 include/linux/usb/phy.h 	const char *phandle, u8 index);
phandle           236 include/linux/usb/phy.h 	const char *phandle, u8 index)
phandle            65 include/xen/acpi.h 	acpi_handle phandle = h;
phandle            68 include/xen/acpi.h 		handle = phandle;
phandle            72 include/xen/acpi.h 		status = acpi_get_parent(handle, &phandle);
phandle           368 scripts/dtc/checks.c 	cell_t phandle;
phandle           399 scripts/dtc/checks.c 	phandle = propval_cell(prop);
phandle           401 scripts/dtc/checks.c 	if ((phandle == 0) || (phandle == -1)) {
phandle           403 scripts/dtc/checks.c 		     node->fullpath, phandle, prop->name);
phandle           407 scripts/dtc/checks.c 	if (node->phandle && (node->phandle != phandle))
phandle           411 scripts/dtc/checks.c 	other = get_node_by_phandle(root, phandle);
phandle           414 scripts/dtc/checks.c 		     node->fullpath, phandle, other->fullpath);
phandle           418 scripts/dtc/checks.c 	node->phandle = phandle;
phandle           461 scripts/dtc/checks.c 	cell_t phandle;
phandle           473 scripts/dtc/checks.c 		phandle = get_node_phandle(dt, refnode);
phandle           474 scripts/dtc/checks.c 		*((cell_t *)(prop->val.val + m->offset)) = cpu_to_fdt32(phandle);
phandle           157 scripts/dtc/dtc.h 	cell_t phandle;
phandle           215 scripts/dtc/dtc.h struct node *get_node_by_phandle(struct node *tree, cell_t phandle);
phandle           493 scripts/dtc/libfdt/fdt_ro.c int fdt_node_offset_by_phandle(const void *fdt, uint32_t phandle)
phandle           497 scripts/dtc/libfdt/fdt_ro.c 	if ((phandle == 0) || (phandle == -1))
phandle           511 scripts/dtc/libfdt/fdt_ro.c 		if (fdt_get_phandle(fdt, offset) == phandle)
phandle           755 scripts/dtc/libfdt/libfdt.h int fdt_node_offset_by_phandle(const void *fdt, uint32_t phandle);
phandle           491 scripts/dtc/livetree.c struct node *get_node_by_phandle(struct node *tree, cell_t phandle)
phandle           495 scripts/dtc/livetree.c 	assert((phandle != 0) && (phandle != -1));
phandle           497 scripts/dtc/livetree.c 	if (tree->phandle == phandle) {
phandle           504 scripts/dtc/livetree.c 		node = get_node_by_phandle(child, phandle);
phandle           522 scripts/dtc/livetree.c 	static cell_t phandle = 1; /* FIXME: ick, static local */
phandle           524 scripts/dtc/livetree.c 	if ((node->phandle != 0) && (node->phandle != -1))
phandle           525 scripts/dtc/livetree.c 		return node->phandle;
phandle           527 scripts/dtc/livetree.c 	while (get_node_by_phandle(root, phandle))
phandle           528 scripts/dtc/livetree.c 		phandle++;
phandle           530 scripts/dtc/livetree.c 	node->phandle = phandle;
phandle           536 scripts/dtc/livetree.c 					    data_append_cell(empty_data, phandle)));
phandle           542 scripts/dtc/livetree.c 					    data_append_cell(empty_data, phandle)));
phandle           548 scripts/dtc/livetree.c 	return node->phandle;