Searched refs:dalvik_cache_exists (Results 1 - 7 of 7) sorted by relevance

/art/runtime/gc/space/
H A Dimage_space.h119 bool* dalvik_cache_exists,
H A Dimage_space.cc239 bool* dalvik_cache_exists,
253 *dalvik_cache_exists = false;
256 &have_android_data, dalvik_cache_exists, is_global_cache); local
258 if (have_android_data && *dalvik_cache_exists) {
359 bool dalvik_cache_exists = false; local
362 &cache_filename, &dalvik_cache_exists, &has_cache, &is_global_cache)) {
481 bool dalvik_cache_exists = false; local
484 &has_system, &cache_filename, &dalvik_cache_exists,
499 if (!dalvik_cache_exists) {
610 } else if (!dalvik_cache_exists) {
234 FindImageFilename(const char* image_location, const InstructionSet image_isa, std::string* system_filename, bool* has_system, std::string* cache_filename, bool* dalvik_cache_exists, bool* has_cache, bool* is_global_cache) argument
[all...]
/art/cmdline/
H A Dcmdline.h53 bool dalvik_cache_exists = false; local
57 &have_android_data, &dalvik_cache_exists, &is_global_cache); local
60 if (have_android_data && dalvik_cache_exists) {
/art/runtime/
H A Dutils.cc1258 bool* have_android_data, bool* dalvik_cache_exists, bool* is_global_cache) {
1264 *dalvik_cache_exists = false;
1272 *dalvik_cache_exists = OS::DirectoryExists(dalvik_cache->c_str());
1274 if (create_if_absent && !*dalvik_cache_exists && !*is_global_cache) {
1276 *dalvik_cache_exists = ((mkdir(dalvik_cache_root.c_str(), 0700) == 0 || errno == EEXIST) &&
1257 GetDalvikCache(const char* subdir, const bool create_if_absent, std::string* dalvik_cache, bool* have_android_data, bool* dalvik_cache_exists, bool* is_global_cache) argument
H A Dutils.h246 // dalvik_cache_exists will be true if there is a dalvik-cache directory that is present.
249 bool* have_android_data, bool* dalvik_cache_exists, bool* is_global_cache);
H A Doat_file_assistant.cc797 bool dalvik_cache_exists; local
799 GetDalvikCache("", false, &result, &have_android_data, &dalvik_cache_exists, &is_global_cache);
/art/patchoat/
H A Dpatchoat.cc65 bool dalvik_cache_exists = false; local
69 &have_android_data, &dalvik_cache_exists, &is_global_cache); local
72 if (have_android_data && dalvik_cache_exists) {

Completed in 1294 milliseconds