Lines Matching refs:split
482 char *split; in __lookup_parent() local
486 for (split = strstr(hname, "//"); split;) { in __lookup_parent()
488 split - hname); in __lookup_parent()
492 hname = split + 2; in __lookup_parent()
493 split = strstr(hname, "//"); in __lookup_parent()
517 char *split; in __create_missing_ancestors() local
524 for (split = strstr(hname, "//"); split;) { in __create_missing_ancestors()
527 split - hname); in __create_missing_ancestors()
529 const char *name = kstrndup(hname, split - hname, in __create_missing_ancestors()
541 hname = split + 2; in __create_missing_ancestors()
542 split = strstr(hname, "//"); in __create_missing_ancestors()
565 const char *split; in __lookupn_profile() local
567 for (split = strnstr(hname, "//", n); split; in __lookupn_profile()
568 split = strnstr(hname, "//", n)) { in __lookupn_profile()
570 split - hname); in __lookupn_profile()
575 n -= split + 2 - hname; in __lookupn_profile()
576 hname = split + 2; in __lookupn_profile()