Searched refs:dex_file_location (Results 1 - 6 of 6) sorted by relevance

/art/runtime/
H A Doat_file.cc292 std::string dex_file_location = ResolveRelativeEncodedDexLocation( local
302 dex_file_location.c_str());
312 dex_file_location.c_str());
320 dex_file_location.c_str());
328 dex_file_location.c_str(),
338 dex_file_location.c_str(),
351 dex_file_location.c_str(),
360 dex_file_location.c_str(),
370 dex_file_location.c_str(),
383 dex_file_location
1145 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 uint8_t* lookup_table_data, const uint32_t* oat_class_offsets_pointer, uint8_t* dex_cache_arrays) argument
[all...]
H A Doat_file.h384 const std::string& dex_file_location,
H A Dclass_linker.cc1546 std::string dex_file_location(dex_cache->GetLocation()->ToModifiedUtf8());
1548 dex_file_location.c_str(),
1615 std::string dex_file_location(h_dex_cache->GetLocation()->ToModifiedUtf8());
1618 if (dex_file_location.find('/') == std::string::npos) {
1623 dex_file_location = dex_location_path + dex_file_location;
1626 dex_file_location.c_str(),
3226 std::string dex_file_location = dex_file.GetLocation(); local
3227 CHECK_GE(dex_file_location.length(), dex_cache_length)
3230 const std::string dex_file_suffix = dex_file_location
[all...]
/art/oatdump/
H A Doatdump.cc641 std::string dex_file_location = oat_dex_file.GetDexFileLocation(); local
645 os << "Failed to open dex file '" << dex_file_location << "': " << error_msg;
664 if (dex_file_location.size() > PATH_MAX || dex_file_location.size() <= 0) {
669 size_t dex_orig_pos = dex_file_location.rfind('/');
671 dex_orig_name = dex_file_location;
673 dex_orig_name = dex_file_location.substr(dex_orig_pos + 1);
677 dex_file_location.erase(dex_orig_pos, strlen("base.apk") + 1);
678 size_t apk_orig_pos = dex_file_location.rfind('/');
680 dex_orig_name = dex_file_location
[all...]
/art/runtime/gc/space/
H A Dimage_space.cc1475 const std::string& dex_file_location = oat_dex_file->GetDexFileLocation(); local
1477 if (!DexFile::GetChecksum(dex_file_location.c_str(), &dex_file_location_checksum, error_msg)) {
1479 "%s", dex_file_location.c_str(), GetName(), error_msg->c_str());
1485 oat_file_->GetLocation().c_str(), dex_file_location.c_str(),
/art/compiler/
H A Doat_writer.cc212 OatDexFile(const char* dex_file_location,
2248 OatWriter::OatDexFile::OatDexFile(const char* dex_file_location,
2255 dex_file_location_size_(strlen(dex_file_location)),
2256 dex_file_location_data_(dex_file_location),

Completed in 328 milliseconds