Lines Matching refs:split
411 char *split; in __lookup_parent() local
415 for (split = strstr(hname, "//"); split;) { in __lookup_parent()
417 split - hname); in __lookup_parent()
421 hname = split + 2; in __lookup_parent()
422 split = strstr(hname, "//"); in __lookup_parent()
446 char *split; in __create_missing_ancestors() local
453 for (split = strstr(hname, "//"); split;) { in __create_missing_ancestors()
456 split - hname); in __create_missing_ancestors()
458 const char *name = kstrndup(hname, split - hname, in __create_missing_ancestors()
470 hname = split + 2; in __create_missing_ancestors()
471 split = strstr(hname, "//"); in __create_missing_ancestors()
494 const char *split; in __lookupn_profile() local
496 for (split = strnstr(hname, "//", n); split; in __lookupn_profile()
497 split = strnstr(hname, "//", n)) { in __lookupn_profile()
499 split - hname); in __lookupn_profile()
504 n -= split + 2 - hname; in __lookupn_profile()
505 hname = split + 2; in __lookupn_profile()