Lines Matching full:property
190 /* Get the length, at the passed node, of the given property type.
191 * Returns -1 on error (ie. no such property at this node).
193 int prom_getproplen(phandle thisnode, const char *property);
195 /* Fetch the requested property using the given buffer. Returns
198 int prom_getproperty(phandle thisnode, const char *property,
201 /* Acquire an integer property. */
202 int prom_getint(phandle node, const char *property);
204 /* Acquire an integer property, with a default value. */
205 int prom_getintdefault(phandle node, const char *property, int defval);
207 /* Acquire a boolean property, 0=FALSE 1=TRUE. */
210 /* Acquire a string property, null string on error. */
222 /* Return the first property type, as a string, for the given node.
227 /* Returns the next property after the passed property for the given
232 /* Returns 1 if the specified node has given property. */
233 int prom_node_has_property(phandle node, const char *property);
238 /* Set the indicated property at the given node with the passed value.