Searched defs:dex_file_location (Results 1 - 3 of 3) sorted by relevance

/art/runtime/gc/space/
H A Dimage_space.cc823 const std::string& dex_file_location = oat_dex_file->GetDexFileLocation(); local
825 if (!DexFile::GetChecksum(dex_file_location.c_str(), &dex_file_location_checksum, error_msg)) {
827 "%s", dex_file_location.c_str(), GetName(), error_msg->c_str());
833 oat_file_->GetLocation().c_str(), dex_file_location.c_str(),
/art/runtime/
H A Doat_file.cc427 std::string dex_file_location = ResolveRelativeEncodedDexLocation( local
436 dex_file_location.c_str());
443 "file offset", GetLocation().c_str(), i, dex_file_location.c_str());
449 dex_file_location.c_str(), dex_file_offset, Size());
456 dex_file_location.c_str());
464 dex_file_location.c_str(), dex_file_pointer);
470 dex_file_location.c_str(), dex_file_pointer);
480 dex_file_location.c_str());
484 std::string canonical_location = DexFile::GetDexCanonicalLocation(dex_file_location.c_str());
488 dex_file_location,
600 OatDexFile(const OatFile* oat_file, const std::string& dex_file_location, const std::string& canonical_dex_file_location, uint32_t dex_file_location_checksum, const uint8_t* dex_file_pointer, const uint32_t* oat_class_offsets_pointer) argument
[all...]
/art/oatdump/
H A Doatdump.cc635 std::string dex_file_location = oat_dex_file.GetDexFileLocation(); local
639 os << "Failed to open dex file '" << dex_file_location << "': " << error_msg;
658 if (dex_file_location.size() > PATH_MAX || dex_file_location.size() <= 0) {
663 size_t dex_orig_pos = dex_file_location.rfind('/');
665 dex_orig_name = dex_file_location;
667 dex_orig_name = dex_file_location.substr(dex_orig_pos + 1);
671 dex_file_location.erase(dex_orig_pos, strlen("base.apk") + 1);
672 size_t apk_orig_pos = dex_file_location.rfind('/');
674 dex_orig_name = dex_file_location
[all...]

Completed in 67 milliseconds