Lines Matching full:given
57 /* FDT_ERR_BADMAGIC: Given "device tree" appears not to be a
61 /* FDT_ERR_BADVERSION: Given device tree has a version which
66 /* FDT_ERR_BADSTRUCTURE: Given device tree has a corrupt
70 /* FDT_ERR_BADLAYOUT: For read-write functions, the given
291 * fdt_check_header() checks that the given buffer contains what
367 * fdt_find_max_phandle() finds the highest phandle value in the given device
380 * fdt_get_max_phandle retrieves the highest phandle in the given
468 * fdt_subnode_offset - find a subnode of a given node
474 * offset parentoffset with the given name. name may include a unit
478 * whose name excluding unit address matches the given name.
513 * fdt_path_offset() finds a node of a given path in the device tree.
517 * level matching the given component, differentiated only by unit
523 * -FDT_ERR_BADPATH, given path does not begin with '/' or is invalid
534 * fdt_get_name - retrieve the name of a given node
564 * the given structure block offset.
584 * one at the given structure block offset. This will be a property
585 * of the same node as the given property.
589 * -FDT_ERR_NOTFOUND, if the given property is the last in its node
627 * fdt_get_property_by_offset - retrieve the property at a given offset
633 * fdt_property structure within the device tree blob at the given
679 * fdt_get_property - find a given property in a given node
717 * fdt_getprop_by_offset - retrieve the value of a property at a given offset
778 * fdt_getprop - retrieve the value of a given property
814 * fdt_get_phandle - retrieve the phandle of a given node
845 * fdt_get_alias - retrieve the path referenced by a given alias
849 * fdt_get_alias() retrieves the value of a given alias. That is, the
854 * NULL, if the given alias or the /aliases node does not exist
876 * -FDT_ERR_NOSPACE, the path of the given node is longer than (bufsize-1)
877 * characters and will not fit in the given buffer.
892 * fdt_supernode_atdepth_offset() finds an ancestor of the given node
919 * fdt_node_depth - find the depth of a given node
923 * fdt_node_depth() finds the depth of a given node. The root node
940 * fdt_parent_offset - find the parent of a given node
944 * fdt_parent_offset() locates the parent node of a given node (that
963 * fdt_node_offset_by_prop_value - find nodes with a given property value
1005 * fdt_node_offset_by_phandle - find the node with a given phandle
1010 * which has the given phandle value. If there is more than one node
1011 * in the tree with the given phandle (an invalid tree), results are
1017 * -FDT_ERR_BADPHANDLE, given phandle value was invalid (0 or -1)
1031 * fdt_node_check_compatible() returns 0 if the given node contains a
1032 * @compatible property with the given string as one of its elements,
1036 * 0, if the node has a 'compatible' property listing the given string
1038 * the given string
1039 * -FDT_ERR_NOTFOUND, if the given node has no 'compatible' property
1050 * fdt_node_offset_by_compatible - find nodes with a given 'compatible' value
1057 * lists the given compatible string; or if startoffset is -1, the
1107 * the number of strings in the given property
1130 * the given string
1136 * fdt_stringlist_get() - obtain the string at a given index in a string list
1151 * A pointer to the string at the given index in the string list or NULL on
1235 * Identical to fdt_setprop_inplace(), but modifies the given property
1236 * starting from the given index, and using only the first characters
1257 * fdt_setprop_inplace() replaces the value of a given property with
1263 * the given property value, and will not alter or move any other part
1289 * fdt_setprop_inplace_u32() replaces the value of a given property
1296 * the given property value, and will not alter or move any other part
1324 * fdt_setprop_inplace_u64() replaces the value of a given property
1331 * the given property value, and will not alter or move any other part
1374 * fdt_nop_property() will replace a given property's representation
1399 * fdt_nop_node() will replace a given node's representation in the
1518 * Adds a reserve map entry to the given blob reserving a region at
1550 * -FDT_ERR_NOTFOUND, there is no entry of the given index (i.e. there
1562 * fdt_set_name - change the name of a given node
1568 * of the given node with the given string. NOTE: this function can't
1569 * efficiently check if the new name is unique amongst the given
1571 * with a name equal to one of the given node's siblings.
1595 * fdt_setprop() sets the value of the named property in the given
1596 * node to the given value and length, creating the property if it
1626 * fdt_setprop_placeholer() allocates the named property in the given node.
1656 * fdt_setprop_u32() sets the value of the named property in the given
1657 * node to the given 32-bit integer value (converting to big-endian if
1691 * fdt_setprop_u64() sets the value of the named property in the given
1692 * node to the given 64-bit integer value (converting to big-endian if
1744 * given node to the given string value (using the length of the
1775 * given node to an empty (zero length) value, or creates a new empty
1806 * given node, creating the property if it does not already exist.
1834 * fdt_appendprop_u32() appends the given 32-bit integer value
1836 * property in the given node, or creates a new property with that
1869 * fdt_appendprop_u64() appends the given 64-bit integer value
1871 * property in the given node, or creates a new property with that
1921 * fdt_appendprop_string() appends the given string to the value of
1922 * the named property in the given node, or creates a new property
1950 * @addr: start address of a given range
1951 * @size: size of a given range
1954 * address and size) to the value of the named property in the given
1987 * fdt_del_property() will delete the given property.
2032 * structure block offset parentoffset, with the given name (which
2045 * the given name
2063 * fdt_del_node() will remove the given node, including all its
2086 * fdt_overlay_apply() will apply the given device tree overlay on the
2087 * given base device tree.