Lines Matching full:given

93 	/* FDT_ERR_TRUNCATED: Structure block of the given device tree
96 /* FDT_ERR_BADMAGIC: Given "device tree" appears not to be a
100 /* FDT_ERR_BADVERSION: Given device tree has a version which
105 /* FDT_ERR_BADSTRUCTURE: Given device tree has a corrupt
109 /* FDT_ERR_BADLAYOUT: For read-write functions, the given
250 * fdt_check_header() checks that the given buffer contains what
305 * fdt_get_max_phandle retrieves the highest phandle in the given
363 * fdt_subnode_offset - find a subnode of a given node
369 * offset parentoffset with the given name. name may include a unit
373 * whose name excluding unit address matches the given name.
406 * fdt_path_offset() finds a node of a given path in the device tree.
410 * level matching the given component, differentiated only by unit
416 * -FDT_ERR_BADPATH, given path does not begin with '/' or is invalid
427 * fdt_get_name - retrieve the name of a given node
457 * the given structure block offset.
477 * one at the given structure block offset. This will be a property
478 * of the same node as the given property.
482 * -FDT_ERR_NOTFOUND, if the given property is the last in its node
520 * fdt_get_property_by_offset - retrieve the property at a given offset
526 * fdt_property structure within the device tree blob at the given
569 * fdt_get_property - find a given property in a given node
607 * fdt_getprop_by_offset - retrieve the value of a property at a given offset
666 * fdt_getprop - retrieve the value of a given property
702 * fdt_get_phandle - retrieve the phandle of a given node
730 * fdt_get_alias - retrieve the path referenced by a given alias
734 * fdt_get_alias() retrieves the value of a given alias. That is, the
739 * NULL, if the given alias or the /aliases node does not exist
761 * -FDT_ERR_NOSPACE, the path of the given node is longer than (bufsize-1)
762 * characters and will not fit in the given buffer.
777 * fdt_supernode_atdepth_offset() finds an ancestor of the given node
804 * fdt_node_depth - find the depth of a given node
808 * fdt_node_depth() finds the depth of a given node. The root node
825 * fdt_parent_offset - find the parent of a given node
829 * fdt_parent_offset() locates the parent node of a given node (that
848 * fdt_node_offset_by_prop_value - find nodes with a given property value
890 * fdt_node_offset_by_phandle - find the node with a given phandle
895 * which has the given phandle value. If there is more than one node
896 * in the tree with the given phandle (an invalid tree), results are
902 * -FDT_ERR_BADPHANDLE, given phandle value was invalid (0 or -1)
917 * fdt_node_check_compatible() returns 0 if the given node contains a
918 * 'compatible' property with the given string as one of its elements,
922 * 0, if the node has a 'compatible' property listing the given string
924 * the given string
925 * -FDT_ERR_NOTFOUND, if the given node has no 'compatible' property
936 * fdt_node_offset_by_compatible - find nodes with a given 'compatible' value
943 * lists the given compatible string; or if startoffset is -1, the
992 * the number of strings in the given property
1015 * the given string
1021 * fdt_stringlist_get() - obtain the string at a given index in a string list
1036 * A pointer to the string at the given index in the string list or NULL on
1120 * Identical to fdt_setprop_inplace(), but modifies the given property
1121 * starting from the given index, and using only the first characters
1140 * fdt_setprop_inplace() replaces the value of a given property with
1146 * the given property value, and will not alter or move any other part
1172 * fdt_setprop_inplace_u32() replaces the value of a given property
1179 * the given property value, and will not alter or move any other part
1207 * fdt_setprop_inplace_u64() replaces the value of a given property
1214 * the given property value, and will not alter or move any other part
1252 * fdt_nop_property() will replace a given property's representation
1277 * fdt_nop_node() will replace a given node's representation in the
1354 * Adds a reserve map entry to the given blob reserving a region at
1386 * -FDT_ERR_NOTFOUND, there is no entry of the given index (i.e. there
1398 * fdt_set_name - change the name of a given node
1404 * of the given node with the given string. NOTE: this function can't
1405 * efficiently check if the new name is unique amongst the given
1407 * with a name equal to one of the given node's siblings.
1431 * fdt_setprop() sets the value of the named property in the given
1432 * node to the given value and length, creating the property if it
1462 * fdt_setprop_placeholer() allocates the named property in the given node.
1492 * fdt_setprop_u32() sets the value of the named property in the given
1493 * node to the given 32-bit integer value (converting to big-endian if
1527 * fdt_setprop_u64() sets the value of the named property in the given
1528 * node to the given 64-bit integer value (converting to big-endian if
1574 * given node to the given string value (using the length of the
1605 * given node to an empty (zero length) value, or creates a new empty
1636 * given node, creating the property if it does not already exist.
1664 * fdt_appendprop_u32() appends the given 32-bit integer value
1666 * property in the given node, or creates a new property with that
1699 * fdt_appendprop_u64() appends the given 64-bit integer value
1701 * property in the given node, or creates a new property with that
1745 * fdt_appendprop_string() appends the given string to the value of
1746 * the named property in the given node, or creates a new property
1774 * fdt_del_property() will delete the given property.
1816 * structure block offset parentoffset, with the given name (which
1829 * the given name
1847 * fdt_del_node() will remove the given node, including all its
1870 * fdt_overlay_apply() will apply the given device tree overlay on the
1871 * given base device tree.