Searched refs:dalvik_cache (Results 1 - 5 of 5) sorted by relevance
/art/runtime/ |
H A D | utils.cc | 1204 void GetDalvikCache(const char* subdir, const bool create_if_absent, std::string* dalvik_cache, argument 1218 *dalvik_cache = dalvik_cache_root + subdir; 1219 *dalvik_cache_exists = OS::DirectoryExists(dalvik_cache->c_str()); 1224 (mkdir(dalvik_cache->c_str(), 0700) == 0 || errno == EEXIST)); 1232 const std::string dalvik_cache = dalvik_cache_root + subdir; local 1233 if (create_if_absent && !OS::DirectoryExists(dalvik_cache.c_str())) { 1241 result = mkdir(dalvik_cache.c_str(), 0700); 1243 PLOG(FATAL) << "Failed to create dalvik-cache directory " << dalvik_cache; 1247 LOG(FATAL) << "Failed to find dalvik-cache directory " << dalvik_cache; 1251 return dalvik_cache; [all...] |
H A D | utils.h | 495 // Return true if we found the dalvik cache and stored it in the dalvik_cache argument. 499 void GetDalvikCache(const char* subdir, bool create_if_absent, std::string* dalvik_cache,
|
H A D | class_linker.cc | 937 const std::string dalvik_cache(GetDalvikCacheOrDie(GetInstructionSetString(kRuntimeISA))); 938 cache_location = GetDalvikCacheFilenameOrDie(dex_location, dalvik_cache.c_str()); 1261 std::string dalvik_cache; local 1265 GetDalvikCache(GetInstructionSetString(kRuntimeISA), false, &dalvik_cache, local 1269 cache_filename = GetDalvikCacheFilenameOrDie(dex_location.c_str(), dalvik_cache.c_str()); 1350 // dalvik_cache does not exist but android data does. This means we should be able to create 1402 "dalvik_cache availible)%s.", odex_filename.c_str(),
|
/art/runtime/gc/space/ |
H A D | image_space.cc | 218 std::string dalvik_cache; local 219 GetDalvikCache(GetInstructionSetString(image_isa), true, &dalvik_cache, local 229 if (!GetDalvikCacheFilename(image_location, dalvik_cache.c_str(), cache_filename, &error_msg)) { 465 "any dalvik_cache to find/place it in.",
|
/art/patchoat/ |
H A D | patchoat.cc | 83 std::string dalvik_cache; local 84 GetDalvikCache(GetInstructionSetString(isa), false, &dalvik_cache, local 95 if (GetDalvikCacheFilename(location.c_str(), dalvik_cache.c_str(),
|
Completed in 119 milliseconds