Searched refs:subdir (Results 1 - 2 of 2) sorted by relevance

/art/runtime/
H A Dutils.h238 // Returns the dalvik-cache location, with subdir appended. Returns the empty string if the cache
240 std::string GetDalvikCache(const char* subdir, bool create_if_absent = true);
241 // Returns the dalvik-cache location, or dies trying. subdir will be
243 std::string GetDalvikCacheOrDie(const char* subdir, bool create_if_absent = true);
248 void GetDalvikCache(const char* subdir, bool create_if_absent, std::string* dalvik_cache,
H A Dutils.cc1257 void GetDalvikCache(const char* subdir, const bool create_if_absent, std::string* dalvik_cache, argument
1259 CHECK(subdir != nullptr);
1271 *dalvik_cache = dalvik_cache_root + subdir;
1281 static std::string GetDalvikCacheImpl(const char* subdir, argument
1284 CHECK(subdir != nullptr);
1287 const std::string dalvik_cache = dalvik_cache_root + subdir;
1325 std::string GetDalvikCache(const char* subdir, const bool create_if_absent) { argument
1326 return GetDalvikCacheImpl(subdir, create_if_absent, false);
1329 std::string GetDalvikCacheOrDie(const char* subdir, const bool create_if_absent) { argument
1330 return GetDalvikCacheImpl(subdir, create_if_absen
[all...]

Completed in 55 milliseconds