Home
last modified time | relevance | path

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

/art/dex2oat/
Ddex2oat_image_test.cc296 std::string base_location = scratch_dir + base_name; in TEST_F() local
299 base_location, in TEST_F()
308 tail_dex_files, base_location, /*boot_image_extension=*/ true); in TEST_F()
348 extra_args.push_back("--boot-image=" + base_location); in TEST_F()
358 extra_args.push_back("--boot-image=" + base_location); in TEST_F()
364 extra_args.back() = "--boot-image=" + base_location + ':' + mid_location; in TEST_F()
408 extra_args.push_back("--boot-image=" + base_location); in TEST_F()
448 bool load_ok = load(base_location); in TEST_F()
464 load_ok = load(base_location + ':' + mid_location); in TEST_F()
469 load_ok = load(base_location + ':' + mid_name); in TEST_F()
[all …]
/art/runtime/jit/
Dprofile_saver.cc458 const std::string base_location = DexFileLoader::GetBaseLocation(dex_file->GetLocation()); in FetchAndCacheResolvedClassesAndMethods() local
461 << " base_location=" << base_location in FetchAndCacheResolvedClassesAndMethods()
462 << " found=" << (locations.find(base_location) != locations.end()) in FetchAndCacheResolvedClassesAndMethods()
464 if (locations.find(base_location) != locations.end()) { in FetchAndCacheResolvedClassesAndMethods()
477 const std::string base_location = DexFileLoader::GetBaseLocation(dex_file->GetLocation()); in FetchAndCacheResolvedClassesAndMethods() local
479 VLOG(profiler) << "Location " << base_location in FetchAndCacheResolvedClassesAndMethods()
480 << " found=" << (locations.find(base_location) != locations.end()) in FetchAndCacheResolvedClassesAndMethods()
482 if (locations.find(base_location) != locations.end()) { in FetchAndCacheResolvedClassesAndMethods()
493 const std::string base_location = DexFileLoader::GetBaseLocation(dex_file->GetLocation()); in FetchAndCacheResolvedClassesAndMethods() local
494 if (locations.find(base_location) != locations.end()) { in FetchAndCacheResolvedClassesAndMethods()
[all …]
Djit_code_cache.cc1517 const std::string base_location = DexFileLoader::GetBaseLocation(dex_file->GetLocation()); in GetProfiledMethods() local
1518 if (!ContainsElement(dex_base_locations, base_location)) { in GetProfiledMethods()
/art/libdexfile/dex/
Ddex_file_loader.cc187 std::string base_location = GetBaseLocation(dex_location); in GetDexCanonicalLocation() local
188 const char* suffix = dex_location + base_location.size(); in GetDexCanonicalLocation()
196 UniqueCPtr<const char[]> path(realpath(base_location.c_str(), nullptr)); in GetDexCanonicalLocation()
197 if (path != nullptr && path.get() != base_location) { in GetDexCanonicalLocation()
202 return base_location; in GetDexCanonicalLocation()
/art/runtime/
Dclass_loader_context.cc600 const std::string base_location(DexFileLoader::GetBaseLocation(path)); in EncodeClassPathContexts() local
601 if (!seen_locations.insert(base_location).second) { in EncodeClassPathContexts()
608 results.emplace(base_location, out.str()); in EncodeClassPathContexts()
610 dex_locations.push_back(base_location); in EncodeClassPathContexts()