Lines Matching defs:path
336 * This function gets the stdout path node.
343 const char *prop, *path;
355 prop = fdt_getprop(dtb, node, "stdout-path", NULL);
360 /* Determine the actual path length, as a colon terminates the path. */
361 path = strchr(prop, ':');
362 if (path == NULL) {
365 len = path - prop;
368 /* Aliases cannot start with a '/', so it must be the actual path. */
373 /* Lookup the alias, as this contains the actual path. */
374 path = fdt_get_alias_namelen(dtb, prop, len);
375 if (path == NULL) {
379 return fdt_path_offset(dtb, path);