Lines Matching refs:split
448 char *split; in __lookup_parent() local
452 for (split = strstr(hname, "//"); split;) { in __lookup_parent()
454 split - hname); in __lookup_parent()
458 hname = split + 2; in __lookup_parent()
459 split = strstr(hname, "//"); in __lookup_parent()
483 char *split; in __create_missing_ancestors() local
490 for (split = strstr(hname, "//"); split;) { in __create_missing_ancestors()
493 split - hname); in __create_missing_ancestors()
495 const char *name = kstrndup(hname, split - hname, in __create_missing_ancestors()
507 hname = split + 2; in __create_missing_ancestors()
508 split = strstr(hname, "//"); in __create_missing_ancestors()
531 const char *split; in __lookupn_profile() local
533 for (split = strnstr(hname, "//", n); split; in __lookupn_profile()
534 split = strnstr(hname, "//", n)) { in __lookupn_profile()
536 split - hname); in __lookupn_profile()
541 n -= split + 2 - hname; in __lookupn_profile()
542 hname = split + 2; in __lookupn_profile()