Lines Matching refs:split
29 * aa_split_fqname - split a fqname into a profile and namespace name
48 char *split = strchr(&name[1], ':');
50 if (split) {
52 *split++ = 0;
53 if (strncmp(split, "//", 2) == 0)
54 split += 2;
55 name = skip_spaces(split);
96 char *split = strnchr(&name[1], end - &name[1], ':');
100 if (split) {
101 *ns_len = split - *ns_name;
104 split++;
105 if (end - split > 1 && strncmp(split, "//", 2) == 0)
106 split += 2;
107 name = skipn_spaces(split, end - split);
288 * TODO: split into profile and ns based flags for when accumulating perms