Home
last modified time | relevance | path

Searched refs:next_slash (Results 1 – 1 of 1) sorted by relevance

/external/selinux/libselinux/src/
Dlabel_file.c746 const char *prev_slash, *next_slash; in lookup_common() local
755 if ((next_slash = strstr(key, "//"))) { in lookup_common()
760 while (next_slash) { in lookup_common()
761 memcpy(clean_key + sofar, prev_slash, next_slash - prev_slash); in lookup_common()
762 sofar += next_slash - prev_slash; in lookup_common()
763 prev_slash = next_slash + 1; in lookup_common()
764 next_slash = strstr(prev_slash, "//"); in lookup_common()