Home
last modified time | relevance | path

Searched refs:pathp (Results 1 – 3 of 3) sorted by relevance

/linux-4.4.14/scripts/dtc/
Dfdtget.c155 const char *pathp; in list_subnodes() local
162 pathp = fdt_get_name(blob, node, NULL); in list_subnodes()
164 if (pathp == NULL) in list_subnodes()
165 pathp = "/* NULL pointer error */"; in list_subnodes()
166 if (*pathp == '\0') in list_subnodes()
167 pathp = "/"; /* root is nameless */ in list_subnodes()
169 puts(pathp); in list_subnodes()
/linux-4.4.14/drivers/of/
Dfdt.c186 const char *pathp; in unflatten_dt_node() local
194 pathp = fdt_get_name(blob, *poffset, &l); in unflatten_dt_node()
195 if (!pathp) in unflatten_dt_node()
205 if ((*pathp) != '/') { in unflatten_dt_node()
216 pathp = ""; in unflatten_dt_node()
239 pathp, (int)strlen(fn), in unflatten_dt_node()
247 memcpy(fn, pathp, l); in unflatten_dt_node()
303 const char *p1 = pathp, *ps = pathp, *pa = NULL; in unflatten_dt_node()
326 pr_debug("fixed up name for %s -> %s\n", pathp, in unflatten_dt_node()
632 const char *pathp; in of_scan_flat_dt() local
[all …]
/linux-4.4.14/fs/quota/
Dquota.c765 struct path path, *pathp = NULL; in SYSCALL_DEFINE4() local
790 pathp = ERR_PTR(ret); in SYSCALL_DEFINE4()
792 pathp = &path; in SYSCALL_DEFINE4()
801 ret = do_quotactl(sb, type, cmds, id, addr, pathp); in SYSCALL_DEFINE4()
805 if (pathp && !IS_ERR(pathp)) in SYSCALL_DEFINE4()
806 path_put(pathp); in SYSCALL_DEFINE4()