Lines Matching refs:split
447 char *split; in __lookup_parent() local
451 for (split = strstr(hname, "//"); split;) { in __lookup_parent()
453 split - hname); in __lookup_parent()
457 hname = split + 2; in __lookup_parent()
458 split = strstr(hname, "//"); in __lookup_parent()
482 char *split; in __create_missing_ancestors() local
489 for (split = strstr(hname, "//"); split;) { in __create_missing_ancestors()
492 split - hname); in __create_missing_ancestors()
494 const char *name = kstrndup(hname, split - hname, in __create_missing_ancestors()
506 hname = split + 2; in __create_missing_ancestors()
507 split = strstr(hname, "//"); in __create_missing_ancestors()
530 const char *split; in __lookupn_profile() local
532 for (split = strnstr(hname, "//", n); split; in __lookupn_profile()
533 split = strnstr(hname, "//", n)) { in __lookupn_profile()
535 split - hname); in __lookupn_profile()
540 n -= split + 2 - hname; in __lookupn_profile()
541 hname = split + 2; in __lookupn_profile()