Home
last modified time | relevance | path

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

/external/sqlite/android/
Dsqlite3_android.cpp229 char const * secondary_paths = getenv("SECONDARY_STORAGE"); in delete_file() local
230 while (secondary_paths && secondary_paths[0]) { in delete_file()
231 const char* colon = strchr(secondary_paths, ':'); in delete_file()
232 int length = (colon ? colon - secondary_paths : strlen(secondary_paths)); in delete_file()
233 if (strncmp(secondary_paths, path, length) == 0) { in delete_file()
236 secondary_paths += length; in delete_file()
237 while (*secondary_paths == ':') secondary_paths++; in delete_file()