Lines Matching full:property
223 /* Get the length, at the passed node, of the given property type.
224 * Returns -1 on error (ie. no such property at this node).
226 extern int prom_getproplen(int thisnode, char *property);
228 /* Fetch the requested property using the given buffer. Returns
231 extern int prom_getproperty(int thisnode, char *property,
234 /* Acquire an integer property. */
235 extern int prom_getint(int node, char *property);
237 /* Acquire an integer property, with a default value. */
238 extern int prom_getintdefault(int node, char *property, int defval);
240 /* Acquire a boolean property, 0=FALSE 1=TRUE. */
243 /* Acquire a string property, null string on error. */
254 /* Return the first property type, as a string, for the given node.
259 /* Returns the next property after the passed property for the given
264 /* Returns 1 if the specified node has given property. */
265 extern int prom_node_has_property(int node, char *property);
267 /* Set the indicated property at the given node with the passed value.