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
298 * fdt_check_header() checks that the given buffer contains what
374 * fdt_find_max_phandle() finds the highest phandle value in the given device
387 * fdt_get_max_phandle retrieves the highest phandle in the given
475 * fdt_subnode_offset - find a subnode of a given node
481 * offset parentoffset with the given name. name may include a unit
485 * whose name excluding unit address matches the given name.
520 * fdt_path_offset() finds a node of a given path in the device tree.
524 * level matching the given component, differentiated only by unit
554 * -FDT_ERR_BADPATH, given path does not begin with '/' and the first
566 * fdt_get_name - retrieve the name of a given node
596 * the given structure block offset.
616 * one at the given structure block offset. This will be a property
617 * of the same node as the given property.
621 * -FDT_ERR_NOTFOUND, if the given property is the last in its node
659 * fdt_get_property_by_offset - retrieve the property at a given offset
665 * fdt_property structure within the device tree blob at the given
725 * fdt_get_property - find a given property in a given node
763 * fdt_getprop_by_offset - retrieve the value of a property at a given offset
824 * fdt_getprop - retrieve the value of a given property
860 * fdt_get_phandle - retrieve the phandle of a given node
891 * fdt_get_alias - retrieve the path referenced by a given alias
895 * fdt_get_alias() retrieves the value of a given alias. That is, the
900 * NULL, if the given alias or the /aliases node does not exist
922 * fdt_get_symbol - retrieve the path referenced by a given symbol
926 * fdt_get_symbol() retrieves the value of a given symbol. That is,
936 * NULL, if the given symbol or the /__symbols__ node does not exist
958 * -FDT_ERR_NOSPACE, the path of the given node is longer than (bufsize-1)
959 * characters and will not fit in the given buffer.
974 * fdt_supernode_atdepth_offset() finds an ancestor of the given node
1001 * fdt_node_depth - find the depth of a given node
1005 * fdt_node_depth() finds the depth of a given node. The root node
1022 * fdt_parent_offset - find the parent of a given node
1026 * fdt_parent_offset() locates the parent node of a given node (that
1045 * fdt_node_offset_by_prop_value - find nodes with a given property value
1087 * fdt_node_offset_by_phandle - find the node with a given phandle
1092 * which has the given phandle value. If there is more than one node
1093 * in the tree with the given phandle (an invalid tree), results are
1099 * -FDT_ERR_BADPHANDLE, given phandle value was invalid (0 or -1)
1113 * fdt_node_check_compatible() returns 0 if the given node contains a
1114 * @compatible property with the given string as one of its elements,
1118 * 0, if the node has a 'compatible' property listing the given string
1120 * the given string
1121 * -FDT_ERR_NOTFOUND, if the given node has no 'compatible' property
1132 * fdt_node_offset_by_compatible - find nodes with a given 'compatible' value
1139 * lists the given compatible string; or if startoffset is -1, the
1189 * the number of strings in the given property
1212 * the given string
1218 * fdt_stringlist_get() - obtain the string at a given index in a string list
1233 * A pointer to the string at the given index in the string list or NULL on
1317 * Identical to fdt_setprop_inplace(), but modifies the given property
1318 * starting from the given index, and using only the first characters
1339 * fdt_setprop_inplace() replaces the value of a given property with
1345 * the given property value, and will not alter or move any other part
1371 * fdt_setprop_inplace_u32() replaces the value of a given property
1378 * the given property value, and will not alter or move any other part
1406 * fdt_setprop_inplace_u64() replaces the value of a given property
1413 * the given property value, and will not alter or move any other part
1456 * fdt_nop_property() will replace a given property's representation
1481 * fdt_nop_node() will replace a given node's representation in the
1600 * Adds a reserve map entry to the given blob reserving a region at
1632 * -FDT_ERR_NOTFOUND, there is no entry of the given index (i.e. there
1644 * fdt_set_name - change the name of a given node
1650 * of the given node with the given string. NOTE: this function can't
1651 * efficiently check if the new name is unique amongst the given
1653 * with a name equal to one of the given node's siblings.
1678 * fdt_setprop_namelen() sets the value of the named property in the given
1679 * node to the given value and length, creating the property if it
1709 * fdt_setprop() sets the value of the named property in the given
1710 * node to the given value and length, creating the property if it
1745 * fdt_setprop_placeholder_namelen() allocates the named property in the given node.
1776 * fdt_setprop_placeholder() allocates the named property in the given node.
1811 * fdt_setprop_u32() sets the value of the named property in the given
1812 * node to the given 32-bit integer value (converting to big-endian if
1846 * fdt_setprop_u64() sets the value of the named property in the given
1847 * node to the given 64-bit integer value (converting to big-endian if
1899 * given node to the given string value (using the length of the
1931 * given node to the given string value (using the length of the
1962 * given node to an empty (zero length) value, or creates a new empty
1993 * given node, creating the property if it does not already exist.
2021 * fdt_appendprop_u32() appends the given 32-bit integer value
2023 * property in the given node, or creates a new property with that
2056 * fdt_appendprop_u64() appends the given 64-bit integer value
2058 * property in the given node, or creates a new property with that
2108 * fdt_appendprop_string() appends the given string to the value of
2109 * the named property in the given node, or creates a new property
2137 * @addr: start address of a given range
2138 * @size: size of a given range
2141 * address and size) to the value of the named property in the given
2174 * fdt_delprop() will delete the given property.
2219 * structure block offset parentoffset, with the given name (which
2231 * the given name
2249 * fdt_del_node() will remove the given node, including all its
2272 * fdt_overlay_apply() will apply the given device tree overlay on the
2273 * given base device tree.