Lines Matching full:property
122 /* Get the length, at the passed node, of the given property type.
123 * Returns -1 on error (ie. no such property at this node).
125 int prom_getproplen(phandle thisnode, const char *property);
127 /* Fetch the requested property using the given buffer. Returns
130 int __must_check prom_getproperty(phandle thisnode, const char *property,
133 /* Acquire an integer property. */
134 int prom_getint(phandle node, char *property);
136 /* Acquire an integer property, with a default value. */
137 int prom_getintdefault(phandle node, char *property, int defval);
139 /* Acquire a boolean property, 0=FALSE 1=TRUE. */
142 /* Acquire a string property, null string on error. */
150 /* Returns the next property after the passed property for the given
158 /* Set the indicated property at the given node with the passed value.