Lines Matching defs:name
200 /* Does the device at node 'node' have name 'name'?
203 int prom_nodematch(phandle node, const char *name)
206 prom_getproperty(node, "name", namebuf, sizeof(namebuf));
207 if (strcmp(namebuf, name) == 0)
212 /* Search siblings at 'node_start' for a node with name
223 error = prom_getproperty(thisnode, "name", promlib_buf,
293 phandle prom_finddevice(const char *name)
297 if (!name)
302 args[3] = (unsigned long) name;