Lines Matching refs:prop
92 inline int prom_getproplen(phandle node, const char *prop) in prom_getproplen() argument
96 if (!node || !prop) in prom_getproplen()
103 args[4] = (unsigned long) prop; in prom_getproplen()
116 inline int prom_getproperty(phandle node, const char *prop, in prom_getproperty() argument
122 plen = prom_getproplen(node, prop); in prom_getproperty()
130 args[4] = (unsigned long) prop; in prom_getproperty()
144 inline int prom_getint(phandle node, const char *prop) in prom_getint() argument
148 if (prom_getproperty(node, prop, (char *) &intprop, sizeof(int)) != -1) in prom_getint()
172 int prom_getbool(phandle node, const char *prop) in prom_getbool() argument
176 retval = prom_getproplen(node, prop); in prom_getbool()
187 void prom_getstring(phandle node, const char *prop, char *user_buf, in prom_getstring() argument
192 len = prom_getproperty(node, prop, user_buf, ubuf_size); in prom_getstring()
310 int prom_node_has_property(phandle node, const char *prop) in prom_node_has_property() argument
317 if (!strcmp(buf, prop)) in prom_node_has_property()