Lines Matching refs:split
409 char *split; in __lookup_parent() local
413 for (split = strstr(hname, "//"); split;) { in __lookup_parent()
415 split - hname); in __lookup_parent()
419 hname = split + 2; in __lookup_parent()
420 split = strstr(hname, "//"); in __lookup_parent()
444 char *split; in __create_missing_ancestors() local
451 for (split = strstr(hname, "//"); split;) { in __create_missing_ancestors()
454 split - hname); in __create_missing_ancestors()
456 const char *name = kstrndup(hname, split - hname, in __create_missing_ancestors()
468 hname = split + 2; in __create_missing_ancestors()
469 split = strstr(hname, "//"); in __create_missing_ancestors()
492 const char *split; in __lookupn_profile() local
494 for (split = strnstr(hname, "//", n); split; in __lookupn_profile()
495 split = strnstr(hname, "//", n)) { in __lookupn_profile()
497 split - hname); in __lookupn_profile()
502 n -= split + 2 - hname; in __lookupn_profile()
503 hname = split + 2; in __lookupn_profile()