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

/art/runtime/
H A Doat_file.cc387 std::string dex_file_location = ResolveRelativeEncodedDexLocation( local
397 dex_file_location.c_str());
407 dex_file_location.c_str());
415 dex_file_location.c_str());
423 dex_file_location.c_str(),
433 dex_file_location.c_str(),
446 dex_file_location.c_str(),
455 dex_file_location.c_str(),
465 dex_file_location.c_str(),
478 dex_file_location
1280 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.h445 const std::string& dex_file_location,
H A Dclass_linker.cc1505 std::string dex_file_location(dex_cache->GetLocation()->ToModifiedUtf8());
1507 dex_file_location.c_str(),
1729 std::string dex_file_location(dex_cache->GetLocation()->ToModifiedUtf8());
1732 if (dex_file_location.find('/') == std::string::npos) {
1737 dex_file_location = dex_location_path + dex_file_location;
1740 dex_file_location.c_str(),
3386 std::string dex_file_location = dex_file.GetLocation(); local
3387 CHECK_GE(dex_file_location.length(), dex_cache_length)
3390 const std::string dex_file_suffix = dex_file_location
[all...]
/art/runtime/gc/space/
H A Dimage_space.cc1795 const std::string& dex_file_location = oat_dex_file->GetDexFileLocation(); local
1799 if (DexFile::IsMultiDexLocation(dex_file_location.c_str())) {
1804 if (!DexFile::GetMultiDexChecksums(dex_file_location.c_str(), &checksums, error_msg)) {
1807 dex_file_location.c_str(),
1817 dex_file_location.c_str(),
1825 std::string multi_dex_location = DexFile::GetMultiDexLocation(i, dex_file_location.c_str());
/art/dexlayout/
H A Ddexlayout.cc1856 const std::string& dex_file_location = dex_file->GetLocation(); local
1861 size_t last_slash = dex_file_location.rfind('/');
1862 std::string dex_file_directory = dex_file_location.substr(0, last_slash + 1);
1864 output_location = dex_file_location + ".new";
1866 output_location += dex_file_location.substr(last_slash);
1868 output_location += "/" + dex_file_location + ".new";
1899 std::string location = "memory mapped file for " + dex_file_location;
/art/oatdump/
H A Doatdump.cc986 std::string dex_file_location = oat_dex_file.GetDexFileLocation(); local
990 os << "Failed to open dex file '" << dex_file_location << "': " << error_msg;
1009 if (dex_file_location.size() > PATH_MAX || dex_file_location.size() <= 0) {
1014 size_t dex_orig_pos = dex_file_location.rfind('/');
1016 dex_orig_name = dex_file_location;
1018 dex_orig_name = dex_file_location.substr(dex_orig_pos + 1);
1024 dex_file_location.erase(dex_orig_pos, strlen("base.apk") + 1);
1025 size_t apk_orig_pos = dex_file_location.rfind('/');
1027 dex_orig_name = dex_file_location
[all...]
/art/compiler/
H A Doat_writer.cc225 OatDexFile(const char* dex_file_location,
2982 OatWriter::OatDexFile::OatDexFile(const char* dex_file_location,
2989 dex_file_location_size_(strlen(dex_file_location)),
2990 dex_file_location_data_(dex_file_location),

Completed in 193 milliseconds