HomeSort by relevance Sort by last modified time
    Searched defs:oat_dex_file (Results 1 - 9 of 9) sorted by null

  /art/test/116-nodex2oat/
nodex2oat.cc 31 const OatFile::OatDexFile* oat_dex_file = local
33 return oat_dex_file != nullptr;
  /art/test/118-noimage-dex2oat/
noimage-dex2oat.cc 31 const OatFile::OatDexFile* oat_dex_file = local
33 return oat_dex_file != nullptr;
  /art/test/117-nopatchoat/
nopatchoat.cc 32 const OatFile::OatDexFile* oat_dex_file = local
35 return oat_dex_file;
39 const OatFile::OatDexFile* oat_dex_file = getOatDexFile(cls); local
41 return oat_dex_file != nullptr && oat_dex_file->GetOatFile()->IsExecutable();
45 const OatFile::OatDexFile* oat_dex_file = getOatDexFile(cls); local
47 if (oat_dex_file == nullptr) {
51 const OatFile* oat_file = oat_dex_file->GetOatFile();
  /art/compiler/
oat_test.cc 150 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file->GetLocation().c_str(), local
152 ASSERT_TRUE(oat_dex_file != nullptr);
153 CHECK_EQ(dex_file->GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
167 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(i);
oat_writer.cc 758 OatDexFile* oat_dex_file = new OatDexFile(offset, *dex_file); local
759 oat_dex_files_.push_back(oat_dex_file);
760 offset += oat_dex_file->SizeOf();
791 for (OatDexFile* oat_dex_file : oat_dex_files_) {
792 for (uint32_t& offset : oat_dex_file->methods_offsets_) {
797 oat_dex_file->UpdateChecksum(oat_header_);
    [all...]
  /art/runtime/
oat_file.cc 335 OatDexFile* oat_dex_file = new OatDexFile(this, local
341 oat_dex_files_storage_.push_back(oat_dex_file);
344 StringPiece key(oat_dex_file->GetDexFileLocation());
345 oat_dex_files_.Put(key, oat_dex_file);
347 StringPiece canonical_key(oat_dex_file->GetCanonicalDexFileLocation());
348 oat_dex_files_.Put(canonical_key, oat_dex_file);
379 const OatFile::OatDexFile* oat_dex_file = nullptr; local
385 oat_dex_file = primary_it->second;
386 DCHECK(oat_dex_file != nullptr);
394 oat_dex_file = secondary_lb->second; // May be nullptr
    [all...]
class_linker.cc 715 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, local
718 if (oat_dex_file != nullptr) {
719 return oat_dex_file;
768 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(next_name, nullptr, false); local
844 const OatFile::OatDexFile* oat_dex_file = FindOpenedOatDexFile(oat_location, dex_location, local
1021 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, local
1143 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, local
1178 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, nullptr); local
1639 const OatFile::OatDexFile* oat_dex_file = oat_file.GetOatDexFile(dex_file_location.c_str(), local
2350 const OatFile::OatDexFile* oat_dex_file = FindOpenedOatDexFileForDexFile(dex_file); local
3672 const OatFile::OatDexFile* oat_dex_file = FindOpenedOatDexFileForDexFile(dex_file); local
6011 const OatFile::OatDexFile* oat_dex_file = class_linker->FindOpenedOatDexFileForDexFile(dex_file); local
    [all...]
  /art/runtime/native/
dalvik_system_DexFile.cc 314 const art::OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(filename, nullptr, local
316 if (oat_dex_file != nullptr) {
353 } else if (location_checksum == oat_dex_file->GetDexFileLocationChecksum()
  /art/oatdump/
oatdump.cc 250 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; local
251 CHECK(oat_dex_file != nullptr);
252 if (!DumpOatDexFile(os, *oat_dex_file)) {
279 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; local
280 CHECK(oat_dex_file != nullptr);
282 std::unique_ptr<const DexFile> dex_file(oat_dex_file->OpenDexFile(&error_msg));
284 LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation()
292 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index);
308 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; local
309 CHECK(oat_dex_file != nullptr)
    [all...]

Completed in 162 milliseconds