Home
last modified time | relevance | path

Searched refs:OatDexFile (Results 1 – 25 of 30) sorted by relevance

12

/art/runtime/
Doat_file.h46 class OatDexFile; variable
295 friend class art::OatDexFile;
303 const OatDexFile* GetOatDexFile(const char* dex_location,
308 const std::vector<const OatDexFile*>& GetOatDexFiles() const { in GetOatDexFiles()
427 std::vector<const OatDexFile*> oat_dex_files_storage_;
435 AllocationTrackingSafeMap<std::string_view, const OatDexFile*, kAllocatorTagOatFile>;
465 friend class art::OatDexFile;
475 class OatDexFile final {
546 ~OatDexFile();
549 explicit OatDexFile(TypeLookupTable&& lookup_table);
[all …]
Doat_file.cc473 OatDexFile* oat_dex_file = new OatDexFile(this, dex_file, dex_location, canonical_location); in Setup()
896 OatDexFile* oat_dex_file = new OatDexFile( in Setup()
1549 bool IsClassVerifiedInVdex(const OatDexFile& oat_dex_file, uint16_t class_def_index) const { in IsClassVerifiedInVdex()
1552 const std::vector<const OatDexFile*>& oat_dex_files = GetOatDexFiles(); in IsClassVerifiedInVdex()
1782 const OatDexFile* OatFile::GetOatDexFile(const char* dex_location, in GetOatDexFile()
1793 const OatDexFile* oat_dex_file = nullptr; in GetOatDexFile()
1851 OatDexFile::OatDexFile(const OatFile* oat_file, in OatDexFile() function in art::OatDexFile
1893 OatDexFile::OatDexFile(const OatFile* oat_file, in OatDexFile() function in art::OatDexFile
1906 OatDexFile::OatDexFile(TypeLookupTable&& lookup_table) : lookup_table_(std::move(lookup_table)) { in OatDexFile() function in art::OatDexFile
1914 OatDexFile::~OatDexFile() {} in ~OatDexFile()
[all …]
Doat_file_manager.cc102 const std::vector<const OatDexFile*>& oat_dex_files = oat_file->GetOatDexFiles(); in FindOpenedOatFileFromDexLocation()
103 for (const OatDexFile* oat_dex_file : oat_dex_files) { in FindOpenedOatFileFromDexLocation()
268 for (const OatDexFile* oat_dex_file : oat_file->GetOatDexFiles()) { in AddDexFilesFromOat()
623 OatDexFile::MadviseDexFile(*dex_file, MadviseState::kMadviseStateAtLoad); in OpenDexFilesFromOat()
Dmodule_exclusion_test.cc182 for (const OatDexFile* oat_dex_file : odex_file->GetOatDexFiles()) { in TEST_F()
Doat_file_assistant.cc275 const OatDexFile* oat_dex_file = oat_file.GetOatDexFile( in LoadDexFiles()
377 const OatDexFile* oat_dex_file = file.GetOatDexFile(dex.c_str(), nullptr); in DexChecksumUpToDate()
593 const OatDexFile* odex_dex_file = odex_file->GetOatDexFile(dex.c_str(), nullptr); in GetRequiredDexChecksums()
Dart_method.cc557 const OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); in GetQuickenedInfo()
/art/libdexfile/dex/
Ddex_file_loader.h30 class OatDexFile; variable
129 const OatDexFile* oat_dex_file,
143 const OatDexFile* oat_dex_file,
173 const OatDexFile* oat_dex_file,
Dart_dex_file_loader.h33 class OatDexFile; variable
62 const OatDexFile* oat_dex_file,
146 const OatDexFile* oat_dex_file,
Dstandard_dex_file.h26 class OatDexFile; variable
118 const OatDexFile* oat_dex_file, in StandardDexFile()
Dcompact_dex_file.cc93 const OatDexFile* oat_dex_file, in CompactDexFile()
Ddex_file_loader.cc226 const OatDexFile* oat_dex_file, in Open()
252 const OatDexFile* oat_dex_file, in OpenWithDataSection()
322 const OatDexFile* oat_dex_file, in OpenCommon()
Ddex_file.h44 class OatDexFile; variable
720 const OatDexFile* GetOatDexFile() const { in GetOatDexFile()
725 void SetOatDexFile(OatDexFile* oat_dex_file) const { in SetOatDexFile()
800 const OatDexFile* oat_dex_file,
873 mutable const OatDexFile* oat_dex_file_;
Dart_dex_file_loader.cc84 static constexpr OatDexFile* kNoOatDexFile = nullptr;
164 const OatDexFile* oat_dex_file, in Open()
549 const OatDexFile* oat_dex_file, in OpenCommon()
Dcompact_dex_file.h293 const OatDexFile* oat_dex_file,
Ddex_file.cc103 const OatDexFile* oat_dex_file, in DexFile()
/art/dex2oat/linker/
Doat_writer.h265 class OatDexFile; variable
300 OatDexFile* oat_dex_file,
302 bool SeekToDexFile(OutputStream* out, File* file, OatDexFile* oat_dex_file);
303 bool LayoutAndWriteDexFile(OutputStream* out, OatDexFile* oat_dex_file);
306 OatDexFile* oat_dex_file,
310 OatDexFile* oat_dex_file,
313 OatDexFile* oat_dex_file,
470 std::vector<std::unique_ptr<art::OatDexFile>> type_lookup_table_oat_dex_files_;
474 dchecked_vector<OatDexFile> oat_dex_files_;
Doat_writer.cc289 class OatWriter::OatDexFile { class in art::linker::OatWriter
291 OatDexFile(const char* dex_file_location,
296 OatDexFile(OatDexFile&& src) = default;
358 DISALLOW_COPY_AND_ASSIGN(OatDexFile);
656 for (const OatDexFile& oat_dex_file : oat_dex_files_) { in GetSourceLocations()
949 for (const OatDexFile& oat_dex_file : writer_->oat_dex_files_) { in InitOatClassesMethodVisitor()
2036 for (OatDexFile& oat_dex_file : oat_dex_files_) { in InitClassOffsets()
2058 for (OatDexFile& oat_dex_file : oat_dex_files_) { in InitOatClasses()
2184 for (OatDexFile& oat_dex_file : oat_dex_files_) { in InitOatDexFiles()
2593 for (const OatDexFile& oat_dex_file : oat_dex_files_) { in WriteQuickeningInfo()
[all …]
/art/runtime/entrypoints/quick/
Dquick_dexcache_entrypoints.cc86 const OatDexFile* oat_dex_file = dex_file->GetOatDexFile(); in StoreTypeInBss()
104 const OatDexFile* oat_dex_file = dex_file->GetOatDexFile(); in StoreStringInBss()
/art/openjdkjvmti/
Dfixed_up_dex_file.cc55 const art::OatDexFile* oat_dex = original_dex_file.GetOatDexFile(); in GetVdex()
/art/test/common/
Druntime_state.cc69 const OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); in Java_Main_hasOatFile()
80 const OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); in Java_Main_getCompilerFilter()
120 const OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); in Java_Main_compiledWithOptimizing()
/art/runtime/jit/
Djit.h40 class OatDexFile; variable
480 std::vector<std::unique_ptr<OatDexFile>> type_lookup_tables_;
Djit.cc1215 std::make_unique<art::OatDexFile>(std::move(type_lookup_table))); in CreateThreadPool()
1833 const OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); in CanAssumeInitialized()
/art/dex2oat/
Ddex2oat_test.cc548 for (const OatDexFile* oat_dex_file : odex_file->GetOatDexFiles()) { in CheckResult()
817 for (const OatDexFile* oat_dex_file : odex_file->GetOatDexFiles()) { in CheckResult()
980 for (const OatDexFile* oat_dex_file : odex_file->GetOatDexFiles()) { in CheckResult()
1005 for (const OatDexFile* oat_dex_file : odex_file->GetOatDexFiles()) { in GetDexFileChecksums()
1440 std::vector<const OatDexFile*> oat_dex_files = odex_file->GetOatDexFiles(); in TEST_F()
1443 for (const OatDexFile* oat_dex : oat_dex_files) { in TEST_F()
1548 std::vector<const OatDexFile*> oat_dex_files = odex_file->GetOatDexFiles(); in TEST_F()
1552 for (const OatDexFile* oat_dex : oat_dex_files) { in TEST_F()
1811 std::vector<const OatDexFile*> oat_dex_files = odex_file->GetOatDexFiles(); in TEST_F()
1814 for (const OatDexFile* oat_dex : oat_dex_files) { in TEST_F()
[all …]
/art/oatdump/
Doatdump.cc117 static std::map<const OatDexFile*, std::unique_ptr<const DexFile>> opened_dex_files;
119 const DexFile* OpenDexFile(const OatDexFile* oat_dex_file, std::string* error_msg) { in OpenDexFile()
234 std::vector<const OatDexFile*> oat_dex_files = oat_file_->GetOatDexFiles(); in Walk()
236 const OatDexFile* oat_dex_file = oat_dex_files[i]; in Walk()
242 void WalkOatDexFile(const OatDexFile* oat_dex_file) { in WalkOatDexFile()
510 const OatDexFile* oat_dex_file = oat_dex_files_[i]; in Dump()
579 const OatDexFile* oat_dex_file = oat_dex_files_[i]; in Dump()
611 const OatDexFile* oat_dex_file = oat_dex_files_[i]; in Dump()
704 const OatDexFile* oat_dex_file = oat_dex_files_[i]; in GetQuickOatCode()
714 OatDexFile::FindClassDef(*dex_file, descriptor, ComputeModifiedUtf8Hash(descriptor)); in GetQuickOatCode()
[all …]
/art/runtime/native/
Ddalvik_system_DexFile.cc443 OatDexFile::FindClassDef(*dex_file, descriptor.c_str(), hash); in DexFile_defineClassNative()

12