Home | History | Annotate | Download | only in android

Lines Matching full:secondary_paths

181         char const * secondary_paths = getenv("SECONDARY_STORAGE");
182 while (secondary_paths && secondary_paths[0]) {
183 const char* colon = strchr(secondary_paths, ':');
184 int length = (colon ? colon - secondary_paths : strlen(secondary_paths));
185 if (strncmp(secondary_paths, path, length) == 0) {
188 secondary_paths += length;
189 while (*secondary_paths == ':') secondary_paths++;