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

  /art/test/common/
stack_inspect.cc 67 const OatFile::OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); local
68 if (oat_dex_file == nullptr) {
runtime_state.cc 41 const OatFile::OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); local
42 return (oat_dex_file != nullptr) ? JNI_TRUE : JNI_FALSE;
81 const OatFile::OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); local
82 if (oat_dex_file == nullptr) {
86 const OatFile* oat_file = oat_dex_file->GetOatFile();
  /art/test/117-nopatchoat/
nopatchoat.cc 44 const OatFile::OatDexFile* oat_dex_file = getOatDexFile(cls); local
46 return oat_dex_file != nullptr && oat_dex_file->GetOatFile()->IsExecutable();
50 const OatFile::OatDexFile* oat_dex_file = getOatDexFile(cls); local
52 if (oat_dex_file == nullptr) {
56 const OatFile* oat_file = oat_dex_file->GetOatFile();
  /art/compiler/
oat_test.cc 396 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation().c_str(), local
398 ASSERT_TRUE(oat_dex_file != nullptr);
399 CHECK_EQ(dex_file.GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
417 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(i);
    [all...]
  /art/runtime/
oat_file_assistant.cc 274 const OatFile::OatDexFile* oat_dex_file = oat_file.GetOatDexFile( local
276 if (oat_dex_file == nullptr) {
282 std::unique_ptr<const DexFile> dex_file = oat_dex_file->OpenDexFile(&error_msg);
292 oat_dex_file = oat_file.GetOatDexFile(secondary_dex_location.c_str(), nullptr, false);
293 if (oat_dex_file == nullptr) {
298 dex_file = oat_dex_file->OpenDexFile(&error_msg);
485 const OatFile::OatDexFile* oat_dex_file = file.GetOatDexFile( local
487 if (oat_dex_file == nullptr) {
    [all...]
oat_file.cc 459 OatDexFile* oat_dex_file = new OatDexFile(this, local
467 oat_dex_files_storage_.push_back(oat_dex_file);
470 StringPiece key(oat_dex_file->GetDexFileLocation());
471 oat_dex_files_.Put(key, oat_dex_file);
473 StringPiece canonical_key(oat_dex_file->GetCanonicalDexFileLocation());
474 oat_dex_files_.Put(canonical_key, oat_dex_file);
1084 const OatFile::OatDexFile* oat_dex_file = nullptr; local
    [all...]
class_linker.cc 1249 const OatFile::OatDexFile* oat_dex_file = dex_file->GetOatDexFile(); local
1270 const OatFile::OatDexFile* oat_dex_file = dex_file->GetOatDexFile(); local
1505 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(location, nullptr); local
2634 const OatFile::OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); local
4019 const OatFile::OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); local
    [all...]
  /art/oatdump/
oatdump.cc 89 const DexFile* OpenDexFile(const OatFile::OatDexFile* oat_dex_file, std::string* error_msg) {
90 DCHECK(oat_dex_file != nullptr);
91 auto it = opened_dex_files.find(oat_dex_file);
95 const DexFile* ret = oat_dex_file->OpenDexFile(error_msg).release();
96 opened_dex_files.emplace(oat_dex_file, std::unique_ptr<const DexFile>(ret));
175 const OatFile::OatDexFile* oat_dex_file = oat_dex_files[i]; local
176 CHECK(oat_dex_file != nullptr);
177 WalkOatDexFile(oat_dex_file);
181 void WalkOatDexFile(const OatFile::OatDexFile* oat_dex_file) {
183 const DexFile* const dex_file = OpenDexFile(oat_dex_file, &error_msg)
452 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; local
491 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; local
520 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; local
    [all...]

Completed in 137 milliseconds