Home
last modified time | relevance | path

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

/art/dex2oat/
Ddex2oat_image_test.cc292 std::string base_location = scratch_dir + base_name; in TEST_F() local
295 base_location, in TEST_F()
304 tail_dex_files, base_location, /*boot_image_extension=*/ true); in TEST_F()
344 extra_args.push_back("--boot-image=" + base_location); in TEST_F()
354 extra_args.push_back("--boot-image=" + base_location); in TEST_F()
360 extra_args.back() = "--boot-image=" + base_location + ':' + mid_location; in TEST_F()
404 extra_args.push_back("--boot-image=" + base_location); in TEST_F()
444 bool load_ok = load(base_location); in TEST_F()
460 load_ok = load(base_location + ':' + mid_location); in TEST_F()
465 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.cc1624 const std::string base_location = DexFileLoader::GetBaseLocation(dex_file->GetLocation()); in GetProfiledMethods() local
1625 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/gc/space/
Dimage_space.cc1626 std::string base_location; member
1700 std::string base_location; member
1750 bool ReadHeader(const std::string& base_location,
1755 bool CompileExtension(const std::string& base_location,
1921 std::string base_location; in MatchNamedComponents() local
1927 base_location = component; in MatchNamedComponents()
1930 base_location = GetBcpComponentPath(0u) + component; in MatchNamedComponents()
1936 base_location = component.substr(0u, slash_pos + 1u) + base_name; in MatchNamedComponents()
1944 base_location = path + base_name; in MatchNamedComponents()
1946 if (ExpandLocation(base_location, bcp_pos) == to_match) { in MatchNamedComponents()
[all …]
/art/runtime/
Dclass_loader_context.cc601 const std::string base_location(DexFileLoader::GetBaseLocation(path)); in EncodeClassPathContexts() local
602 if (!seen_locations.insert(base_location).second) { in EncodeClassPathContexts()
609 results.emplace(base_location, out.str()); in EncodeClassPathContexts()
611 dex_locations.push_back(base_location); in EncodeClassPathContexts()