Searched refs:dalvik_cache (Results 1 - 5 of 5) sorted by relevance

/art/cmdline/
H A Dcmdline.h55 std::string dalvik_cache; local
56 GetDalvikCache(GetInstructionSetString(isa), false, &dalvik_cache, local
67 if (GetDalvikCacheFilename(location.c_str(), dalvik_cache.c_str(),
/art/runtime/
H A Dutils.cc1257 void GetDalvikCache(const char* subdir, const bool create_if_absent, std::string* dalvik_cache, argument
1271 *dalvik_cache = dalvik_cache_root + subdir;
1272 *dalvik_cache_exists = OS::DirectoryExists(dalvik_cache->c_str());
1277 (mkdir(dalvik_cache->c_str(), 0700) == 0 || errno == EEXIST));
1287 const std::string dalvik_cache = dalvik_cache_root + subdir; local
1288 if (!OS::DirectoryExists(dalvik_cache.c_str())) {
1297 LOG(FATAL) << "Failed to find dalvik-cache directory " << dalvik_cache
1313 result = mkdir(dalvik_cache.c_str(), 0700);
1316 PLOG(FATAL) << "Failed to create dalvik-cache directory " << dalvik_cache;
1322 return dalvik_cache;
[all...]
H A Dutils.h244 // Return true if we found the dalvik cache and stored it in the dalvik_cache argument.
248 void GetDalvikCache(const char* subdir, bool create_if_absent, std::string* dalvik_cache,
/art/runtime/gc/space/
H A Dimage_space.cc254 std::string dalvik_cache; local
255 GetDalvikCache(GetInstructionSetString(image_isa), true, &dalvik_cache, local
265 if (!GetDalvikCacheFilename(image_location, dalvik_cache.c_str(), cache_filename, &error_msg)) {
501 "any dalvik_cache to find/place it in.",
/art/patchoat/
H A Dpatchoat.cc67 std::string dalvik_cache; local
68 GetDalvikCache(GetInstructionSetString(isa), false, &dalvik_cache, local
79 if (GetDalvikCacheFilename(location.c_str(), dalvik_cache.c_str(),

Completed in 1229 milliseconds