HomeSort by relevance Sort by last modified time
    Searched refs:next_slash (Results 1 - 3 of 3) sorted by null

  /system/libufdt/
ufdt_node.c 172 const char *next_slash; local
173 next_slash = dto_memchr(path, '/', end - path);
174 if (!next_slash) next_slash = end;
178 next = ufdt_node_get_subnode_by_name_len(cur, path, next_slash - path);
181 path = next_slash;
ufdt_convert.c 186 const char *next_slash; local
187 next_slash = dto_memchr(path, '/', end - path);
188 if (!next_slash) next_slash = end;
193 next_slash - path);
207 return ufdt_node_get_node_by_path_len(target_node, next_slash,
208 end - next_slash);
  /external/selinux/libselinux/src/
label_file.c 906 const char *prev_slash, *next_slash; local
916 if ((next_slash = strstr(key, "//"))) {
921 while (next_slash) {
922 memcpy(clean_key + sofar, prev_slash, next_slash - prev_slash);
923 sofar += next_slash - prev_slash;
924 prev_slash = next_slash + 1;
925 next_slash = strstr(prev_slash, "//");

Completed in 152 milliseconds