Home
last modified time | relevance | path

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

/art/runtime/
Doat_file.cc436 const std::string& dex_file_location, in ReadIndexBssMapping() argument
446 dex_file_location.c_str(), in ReadIndexBssMapping()
467 dex_file_location.c_str(), in ReadIndexBssMapping()
628 std::string dex_file_location(oat_dex_file_location); in Setup() local
629 bool is_multidex = DexFileLoader::IsMultiDexLocation(dex_file_location.c_str()); in Setup()
638 dex_file_location.c_str()); in Setup()
649 dex_file_location.c_str(), in Setup()
659 (!StartsWith(dex_file_location, primary_location) || in Setup()
660 dex_file_location[primary_location.size()] != DexFileLoader::kMultiDexSeparator)) { in Setup()
664 dex_file_location.c_str(), in Setup()
[all …]
Doat_file.h569 const std::string& dex_file_location,
587 const std::string& dex_file_location,
Dclass_linker.cc1716 std::string dex_file_location(dex_cache->GetLocation()->ToModifiedUtf8()); in OpenImageDexFiles() local
1718 dex_file_location.c_str(), in OpenImageDexFiles()
1933 std::string dex_file_location = dex_cache->GetLocation()->ToModifiedUtf8(); in AddImageSpace() local
1935 dex_file_location.c_str(), in AddImageSpace()
3897 std::string dex_file_location = dex_file.GetLocation(); in RegisterDexFileLocked() local
3901 CHECK_GE(dex_file_location.length(), dex_cache_length) in RegisterDexFileLocked()
3903 const std::string dex_file_suffix = dex_file_location.substr( in RegisterDexFileLocked()
3904 dex_file_location.length() - dex_cache_length, in RegisterDexFileLocked()
/art/dexlayout/
Ddexlayout.cc1827 const std::string& dex_file_location = input_dex_file->GetLocation(); in OutputDexFile() local
1832 const size_t last_slash = dex_file_location.rfind('/'); in OutputDexFile()
1833 std::string dex_file_directory = dex_file_location.substr(0, last_slash + 1); in OutputDexFile()
1835 output_location = dex_file_location + ".new"; in OutputDexFile()
1840 const size_t separator = dex_file_location.rfind('!'); in OutputDexFile()
1842 output_location += dex_file_location.substr(separator + 1); in OutputDexFile()
1860 LOG(ERROR) << "Failed to write main section for dex file " << dex_file_location; in OutputDexFile()
1866 LOG(ERROR) << "Failed to write data section for dex file " << dex_file_location; in OutputDexFile()
/art/oatdump/
Doatdump.cc947 std::string dex_file_location = oat_dex_file.GetDexFileLocation(); in ExportDexFile() local
963 os << "Failed to open dex file '" << dex_file_location << "': " << error_msg; in ExportDexFile()
978 os << "Unexpected checksum from unquicken dex file '" << dex_file_location << "'\n"; in ExportDexFile()
992 if (dex_file_location.size() > PATH_MAX || dex_file_location.size() <= 0) { in ExportDexFile()
997 size_t dex_orig_pos = dex_file_location.rfind('/'); in ExportDexFile()
999 dex_orig_name = dex_file_location; in ExportDexFile()
1001 dex_orig_name = dex_file_location.substr(dex_orig_pos + 1); in ExportDexFile()
1007 dex_file_location.erase(dex_orig_pos, strlen("base.apk") + 1); in ExportDexFile()
1008 size_t apk_orig_pos = dex_file_location.rfind('/'); in ExportDexFile()
1010 dex_orig_name = dex_file_location.substr(++apk_orig_pos); in ExportDexFile()
/art/runtime/gc/space/
Dimage_space.cc3273 const std::string& dex_file_location = oat_dex_file->GetDexFileLocation(); in ValidateOatFile() local
3277 if (DexFileLoader::IsMultiDexLocation(dex_file_location.c_str())) { in ValidateOatFile()
3284 dex_file_location.c_str(), &checksums, &dex_locations_ignored, error_msg)) { in ValidateOatFile()
3287 dex_file_location.c_str(), in ValidateOatFile()
3297 dex_file_location.c_str(), in ValidateOatFile()
3307 dex_file_location.c_str()); in ValidateOatFile()
/art/dex2oat/linker/
Doat_writer.cc309 OatDexFile(const char* dex_file_location,
3855 OatWriter::OatDexFile::OatDexFile(const char* dex_file_location, in OatDexFile() argument
3862 dex_file_location_size_(strlen(dex_file_location)), in OatDexFile()
3863 dex_file_location_data_(dex_file_location), in OatDexFile()