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
530 * -FDT_ERR_BADPATH, given path does not begin with '/' or is invalid
541 * fdt_get_name - retrieve the name of a given node
571 * the given structure block offset.
591 * one at the given structure block offset. This will be a property
592 * of the same node as the given property.
596 * -FDT_ERR_NOTFOUND, if the given property is the last in its node
634 * fdt_get_property_by_offset - retrieve the property at a given offset
640 * fdt_property structure within the device tree blob at the given
686 * fdt_get_property - find a given property in a given node
724 * fdt_getprop_by_offset - retrieve the value of a property at a given offset
785 * fdt_getprop - retrieve the value of a given property
821 * fdt_get_phandle - retrieve the phandle of a given node
852 * fdt_get_alias - retrieve the path referenced by a given alias
856 * fdt_get_alias() retrieves the value of a given alias. That is, the
861 * NULL, if the given alias or the /aliases node does not exist
883 * -FDT_ERR_NOSPACE, the path of the given node is longer than (bufsize-1)
884 * characters and will not fit in the given buffer.
899 * fdt_supernode_atdepth_offset() finds an ancestor of the given node
926 * fdt_node_depth - find the depth of a given node
930 * fdt_node_depth() finds the depth of a given node. The root node
947 * fdt_parent_offset - find the parent of a given node
951 * fdt_parent_offset() locates the parent node of a given node (that
970 * fdt_node_offset_by_prop_value - find nodes with a given property value
1012 * fdt_node_offset_by_phandle - find the node with a given phandle
1017 * which has the given phandle value. If there is more than one node
1018 * in the tree with the given phandle (an invalid tree), results are
1024 * -FDT_ERR_BADPHANDLE, given phandle value was invalid (0 or -1)
1038 * fdt_node_check_compatible() returns 0 if the given node contains a
1039 * @compatible property with the given string as one of its elements,
1043 * 0, if the node has a 'compatible' property listing the given string
1045 * the given string
1046 * -FDT_ERR_NOTFOUND, if the given node has no 'compatible' property
1057 * fdt_node_offset_by_compatible - find nodes with a given 'compatible' value
1064 * lists the given compatible string; or if startoffset is -1, the
1114 * the number of strings in the given property
1137 * the given string
1143 * fdt_stringlist_get() - obtain the string at a given index in a string list
1158 * A pointer to the string at the given index in the string list or NULL on
1242 * Identical to fdt_setprop_inplace(), but modifies the given property
1243 * starting from the given index, and using only the first characters
1264 * fdt_setprop_inplace() replaces the value of a given property with
1270 * the given property value, and will not alter or move any other part
1296 * fdt_setprop_inplace_u32() replaces the value of a given property
1303 * the given property value, and will not alter or move any other part
1331 * fdt_setprop_inplace_u64() replaces the value of a given property
1338 * the given property value, and will not alter or move any other part
1381 * fdt_nop_property() will replace a given property's representation
1406 * fdt_nop_node() will replace a given node's representation in the
1525 * Adds a reserve map entry to the given blob reserving a region at
1557 * -FDT_ERR_NOTFOUND, there is no entry of the given index (i.e. there
1569 * fdt_set_name - change the name of a given node
1575 * of the given node with the given string. NOTE: this function can't
1576 * efficiently check if the new name is unique amongst the given
1578 * with a name equal to one of the given node's siblings.
1602 * fdt_setprop() sets the value of the named property in the given
1603 * node to the given value and length, creating the property if it
1633 * fdt_setprop_placeholer() allocates the named property in the given node.
1663 * fdt_setprop_u32() sets the value of the named property in the given
1664 * node to the given 32-bit integer value (converting to big-endian if
1698 * fdt_setprop_u64() sets the value of the named property in the given
1699 * node to the given 64-bit integer value (converting to big-endian if
1751 * given node to the given string value (using the length of the
1782 * given node to an empty (zero length) value, or creates a new empty
1813 * given node, creating the property if it does not already exist.
1841 * fdt_appendprop_u32() appends the given 32-bit integer value
1843 * property in the given node, or creates a new property with that
1876 * fdt_appendprop_u64() appends the given 64-bit integer value
1878 * property in the given node, or creates a new property with that
1928 * fdt_appendprop_string() appends the given string to the value of
1929 * the named property in the given node, or creates a new property
1957 * @addr: start address of a given range
1958 * @size: size of a given range
1961 * address and size) to the value of the named property in the given
1994 * fdt_del_property() will delete the given property.
2039 * structure block offset parentoffset, with the given name (which
2052 * the given name
2070 * fdt_del_node() will remove the given node, including all its
2093 * fdt_overlay_apply() will apply the given device tree overlay on the
2094 * given base device tree.