Home
last modified time | relevance | path

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

/art/dex2oat/
Ddex2oat_image_test.cc291 std::string base_location = scratch_dir + base_name; in TEST_F() local
294 base_location, in TEST_F()
303 tail_dex_files, base_location, /*boot_image_extension=*/ true); in TEST_F()
343 extra_args.push_back("--boot-image=" + base_location); in TEST_F()
353 extra_args.push_back("--boot-image=" + base_location); in TEST_F()
359 extra_args.back() = "--boot-image=" + base_location + ':' + mid_location; in TEST_F()
403 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(ART_FORMAT("{}:{}", base_location, mid_location)); in TEST_F()
469 load_ok = load(ART_FORMAT("{}:{}", base_location, mid_name)); in TEST_F()
[all …]
/art/runtime/gc/space/
Dimage_space.h324 std::string base_location; member
382 std::string base_location; member
433 bool ValidateOatFile(const std::string& base_location,
439 bool ReadHeader(const std::string& base_location,
446 bool CompileBootclasspathElements(const std::string& base_location,
Dimage_space.cc1606 std::string base_location; in MatchNamedComponents() local
1612 base_location = component; in MatchNamedComponents()
1615 base_location = GetBcpComponentPath(0u) + component; in MatchNamedComponents()
1621 base_location = component.substr(0u, slash_pos + 1u) + base_name; in MatchNamedComponents()
1629 base_location = path + base_name; in MatchNamedComponents()
1631 if (ExpandLocation(base_location, bcp_pos) == to_match) { in MatchNamedComponents()
1648 location.base_location = base_location; in MatchNamedComponents()
1750 const std::string& base_location, in ValidateOatFile() argument
1756 std::string art_location = ExpandLocation(base_location, bcp_index); in ValidateOatFile()
1814 bool ImageSpace::BootImageLayout::ReadHeader(const std::string& base_location, in ReadHeader() argument
[all …]
/art/libdexfile/dex/
Ddex_file_loader.cc227 std::string base_location = GetBaseLocation(dex_location); in GetDexCanonicalLocation() local
228 const char* suffix = dex_location + base_location.size(); in GetDexCanonicalLocation()
236 UniqueCPtr<const char[]> path(realpath(base_location.c_str(), nullptr)); in GetDexCanonicalLocation()
237 if (path != nullptr && path.get() != base_location) { in GetDexCanonicalLocation()
242 return base_location; in GetDexCanonicalLocation()
/art/runtime/
Dclass_loader_context.cc610 const std::string base_location(DexFileLoader::GetBaseLocation(path)); in EncodeClassPathContexts() local
611 if (!seen_locations.insert(base_location).second) { in EncodeClassPathContexts()
618 results.emplace(base_location, out.str()); in EncodeClassPathContexts()
620 dex_locations.push_back(base_location); in EncodeClassPathContexts()
/art/runtime/jit/
Dprofile_saver.cc624 const std::string base_location = DexFileLoader::GetBaseLocation(dex_file->GetLocation()); in UpdateProfile() local
625 if (locations.find(base_location) == locations.end()) { in UpdateProfile()
Djit_code_cache.cc1466 const std::string base_location = DexFileLoader::GetBaseLocation(dex_file->GetLocation()); in GetProfiledMethods() local
1467 if (!ContainsElement(dex_base_locations, base_location)) { in GetProfiledMethods()