Searched refs:dex_file_location (Results 1 – 5 of 5) sorted by relevance
/art/runtime/ |
D | oat_file.cc | 424 const std::string& dex_file_location, in ReadIndexBssMapping() argument 434 dex_file_location.c_str(), in ReadIndexBssMapping() 455 dex_file_location.c_str(), in ReadIndexBssMapping() 603 std::string dex_file_location(oat_dex_file_location); in Setup() local 604 bool is_multidex = DexFileLoader::IsMultiDexLocation(dex_file_location.c_str()); in Setup() 613 dex_file_location.c_str()); in Setup() 624 dex_file_location.c_str(), in Setup() 634 (!StartsWith(dex_file_location, primary_location) || in Setup() 635 dex_file_location[primary_location.size()] != DexFileLoader::kMultiDexSeparator)) { in Setup() 639 dex_file_location.c_str(), in Setup() [all …]
|
D | oat_file.h | 558 const std::string& dex_file_location, 573 const std::string& dex_file_location,
|
/art/dexlayout/ |
D | dexlayout.cc | 1824 const std::string& dex_file_location = input_dex_file->GetLocation(); in OutputDexFile() local 1829 const size_t last_slash = dex_file_location.rfind('/'); in OutputDexFile() 1830 std::string dex_file_directory = dex_file_location.substr(0, last_slash + 1); in OutputDexFile() 1832 output_location = dex_file_location + ".new"; in OutputDexFile() 1837 const size_t separator = dex_file_location.rfind('!'); in OutputDexFile() 1839 output_location += dex_file_location.substr(separator + 1); in OutputDexFile() 1857 LOG(ERROR) << "Failed to write main section for dex file " << dex_file_location; in OutputDexFile() 1863 LOG(ERROR) << "Failed to write data section for dex file " << dex_file_location; in OutputDexFile()
|
/art/oatdump/ |
D | oatdump.cc | 964 std::string dex_file_location = oat_dex_file.GetDexFileLocation(); in ExportDexFile() local 980 os << "Failed to open dex file '" << dex_file_location << "': " << error_msg; in ExportDexFile() 995 os << "Unexpected checksum from unquicken dex file '" << dex_file_location << "'\n"; in ExportDexFile() 1009 if (dex_file_location.size() > PATH_MAX || dex_file_location.size() <= 0) { in ExportDexFile() 1014 size_t dex_orig_pos = dex_file_location.rfind('/'); in ExportDexFile() 1016 dex_orig_name = dex_file_location; in ExportDexFile() 1018 dex_orig_name = dex_file_location.substr(dex_orig_pos + 1); in ExportDexFile() 1024 dex_file_location.erase(dex_orig_pos, strlen("base.apk") + 1); in ExportDexFile() 1025 size_t apk_orig_pos = dex_file_location.rfind('/'); in ExportDexFile() 1027 dex_orig_name = dex_file_location.substr(++apk_orig_pos); in ExportDexFile()
|
/art/dex2oat/linker/ |
D | oat_writer.cc | 291 OatDexFile(const char* dex_file_location, 4040 OatWriter::OatDexFile::OatDexFile(const char* dex_file_location, in OatDexFile() argument 4049 dex_file_location_size_(strlen(dex_file_location)), in OatDexFile() 4050 dex_file_location_data_(dex_file_location), in OatDexFile()
|