Lines Matching refs:dex_file_location
968 std::string dex_file_location = oat_dex_file.GetDexFileLocation(); in ExportDexFile() local
984 os << "Failed to open dex file '" << dex_file_location << "': " << error_msg; in ExportDexFile()
999 os << "Unexpected checksum from unquicken dex file '" << dex_file_location << "'\n"; in ExportDexFile()
1004 CHECK(dex_file->IsDexContainerFirstEntry()) << dex_file_location; in ExportDexFile()
1016 if (dex_file_location.size() > PATH_MAX || dex_file_location.size() <= 0) { in ExportDexFile()
1021 size_t dex_orig_pos = dex_file_location.rfind('/'); in ExportDexFile()
1023 dex_orig_name = dex_file_location; in ExportDexFile()
1025 dex_orig_name = dex_file_location.substr(dex_orig_pos + 1); in ExportDexFile()
1031 dex_file_location.erase(dex_orig_pos, strlen("base.apk") + 1); in ExportDexFile()
1032 size_t apk_orig_pos = dex_file_location.rfind('/'); in ExportDexFile()
1034 dex_orig_name = dex_file_location.substr(++apk_orig_pos); in ExportDexFile()