HomeSort by relevance Sort by last modified time
    Searched full:oat_dex_file (Results 1 - 25 of 35) sorted by null

1 2

  /art/test/117-nopatchoat/
nopatchoat.cc 45 const OatFile::OatDexFile* oat_dex_file = getOatDexFile(cls); local
47 return oat_dex_file != nullptr && oat_dex_file->GetOatFile()->IsExecutable();
51 const OatFile::OatDexFile* oat_dex_file = getOatDexFile(cls); local
53 if (oat_dex_file == nullptr) {
57 const OatFile* oat_file = oat_dex_file->GetOatFile();
  /art/dex2oat/linker/
oat_writer.cc 633 for (const OatDexFile& oat_dex_file : oat_dex_files_) {
634 locations.push_back(oat_dex_file.GetLocation());
910 for (const OatDexFile& oat_dex_file : writer_->oat_dex_files_) {
911 num_classes += oat_dex_file.class_offsets_.size();
3174 OatDexFile* oat_dex_file = &oat_dex_files_[i]; local
3248 OatDexFile* oat_dex_file = &oat_dex_files_[i]; local
3954 OatDexFile* oat_dex_file = &oat_dex_files_[i]; local
4041 OatDexFile* oat_dex_file = &oat_dex_files_[i]; local
4096 OatDexFile* oat_dex_file = &oat_dex_files_[i]; local
4422 const OatDexFile& oat_dex_file = oat_dex_files_[i]; local
    [all...]
oat_writer.h 294 OatDexFile* oat_dex_file,
296 bool SeekToDexFile(OutputStream* out, File* file, OatDexFile* oat_dex_file);
297 bool LayoutAndWriteDexFile(OutputStream* out, OatDexFile* oat_dex_file);
300 OatDexFile* oat_dex_file,
304 OatDexFile* oat_dex_file,
307 OatDexFile* oat_dex_file,
oat_writer_test.cc 443 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation().c_str(), local
445 ASSERT_TRUE(oat_dex_file != nullptr);
446 CHECK_EQ(dex_file.GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
464 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(i);
    [all...]
  /art/runtime/entrypoints/quick/
quick_dexcache_entrypoints.cc 83 const OatDexFile* oat_dex_file = dex_file->GetOatDexFile(); local
84 if (oat_dex_file != nullptr) {
85 size_t bss_offset = IndexBssMappingLookup::GetBssOffset(oat_dex_file->GetTypeBssMapping(),
90 StoreObjectInBss(outer_method, oat_dex_file->GetOatFile(), bss_offset, resolved_type);
101 const OatDexFile* oat_dex_file = dex_file->GetOatDexFile(); local
102 if (oat_dex_file != nullptr) {
103 size_t bss_offset = IndexBssMappingLookup::GetBssOffset(oat_dex_file->GetStringBssMapping(),
108 StoreObjectInBss(outer_method, oat_dex_file->GetOatFile(), bss_offset, resolved_string);
  /art/libdexfile/dex/
compact_dex_file.cc 93 const OatDexFile* oat_dex_file,
101 oat_dex_file,
dex_file_loader.cc 223 const OatDexFile* oat_dex_file,
233 oat_dex_file,
248 const OatDexFile* oat_dex_file,
258 oat_dex_file,
295 /*oat_dex_file*/ nullptr,
316 const OatDexFile* oat_dex_file,
334 oat_dex_file,
351 oat_dex_file,
419 /*oat_dex_file*/ nullptr,
standard_dex_file.h 95 const OatDexFile* oat_dex_file,
103 oat_dex_file,
dex_file_loader.h 119 const OatDexFile* oat_dex_file,
132 const OatDexFile* oat_dex_file,
170 const OatDexFile* oat_dex_file,
code_item_accessors_test.cc 49 /*oat_dex_file*/nullptr,
compact_dex_file.h 293 const OatDexFile* oat_dex_file,
dex_file_loader_test.cc 255 /* oat_dex_file */ nullptr,
  /art/test/common/
runtime_state.cc 63 const OatFile::OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); local
64 return (oat_dex_file != nullptr) ? JNI_TRUE : JNI_FALSE;
103 const OatFile::OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); local
104 if (oat_dex_file == nullptr) {
108 const OatFile* oat_file = oat_dex_file->GetOatFile();
  /art/oatdump/
oatdump.cc 113 const DexFile* OpenDexFile(const OatFile::OatDexFile* oat_dex_file, std::string* error_msg) {
114 DCHECK(oat_dex_file != nullptr);
115 auto it = opened_dex_files.find(oat_dex_file);
119 const DexFile* ret = oat_dex_file->OpenDexFile(error_msg).release();
120 opened_dex_files.emplace(oat_dex_file, std::unique_ptr<const DexFile>(ret));
236 const OatFile::OatDexFile* oat_dex_file = oat_dex_files[i]; local
237 CHECK(oat_dex_file != nullptr);
238 WalkOatDexFile(oat_dex_file);
242 void WalkOatDexFile(const OatFile::OatDexFile* oat_dex_file) {
244 const DexFile* const dex_file = OpenDexFile(oat_dex_file, &error_msg)
519 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; local
594 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; local
626 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; local
665 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; local
893 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; local
    [all...]
  /art/runtime/
oat_file.cc 845 OatDexFile* oat_dex_file = new OatDexFile(this, local
1630 const OatFile::OatDexFile* oat_dex_file = nullptr; local
1801 const OatFile::OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); local
1848 const OatFile::OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); local
1966 const OatFile::OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); local
    [all...]
oat_file_assistant.cc 357 const OatFile::OatDexFile* oat_dex_file = oat_file.GetOatDexFile( local
359 if (oat_dex_file == nullptr) {
364 std::unique_ptr<const DexFile> dex_file = oat_dex_file->OpenDexFile(&error_msg);
374 oat_dex_file = oat_file.GetOatDexFile(multidex_dex_location.c_str(), nullptr);
375 if (oat_dex_file == nullptr) {
380 dex_file = oat_dex_file->OpenDexFile(&error_msg);
456 const OatFile::OatDexFile* oat_dex_file = file.GetOatDexFile(dex.c_str(), nullptr); local
457 if (oat_dex_file == nullptr) {
461 uint32_t actual_checksum = oat_dex_file->GetDexFileLocationChecksum();
    [all...]
oat_file_manager.cc 96 for (const OatDexFile* oat_dex_file : oat_dex_files) {
97 if (DexFileLoader::GetBaseLocation(oat_dex_file->GetDexFileLocation()) == dex_base_location) {
259 for (const OatDexFile* oat_dex_file : oat_file->GetOatDexFiles()) {
261 std::unique_ptr<const DexFile> dex_file = oat_dex_file->OpenDexFile(&error);
art_method.cc 574 const OatFile::OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); local
575 if (oat_dex_file == nullptr || (oat_dex_file->GetOatFile() == nullptr)) {
578 return oat_dex_file->GetOatFile()->GetVdexFile()->GetQuickenedInfoOf(dex_file,
    [all...]
vdex_file.cc 218 nullptr /*oat_dex_file*/,
  /art/test/983-source-transform-verify/
source_transform_art.cc 49 /*oat_dex_file*/ nullptr,
  /art/runtime/dex/
art_dex_file_loader.h 61 const OatDexFile* oat_dex_file,
130 const OatDexFile* oat_dex_file,
art_dex_file_loader.cc 162 const OatDexFile* oat_dex_file,
173 oat_dex_file,
515 const OatDexFile* oat_dex_file,
527 oat_dex_file,
  /art/compiler/optimizing/
optimizing_unit_test.h 135 /*oat_dex_file*/ nullptr,
  /art/openjdkjvmti/
fixed_up_dex_file.cc 156 /*oat_dex_file*/nullptr,
  /art/dex2oat/
dex2oat_test.cc 566 for (const OatDexFile* oat_dex_file : odex_file->GetOatDexFiles()) {
567 std::unique_ptr<const DexFile> dex_file = oat_dex_file->OpenDexFile(&error_msg);
572 OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index);
837 for (const OatDexFile* oat_dex_file : odex_file->GetOatDexFiles()) {
838 std::unique_ptr<const DexFile> new_dex_file = oat_dex_file->OpenDexFile(&error_msg);
    [all...]

Completed in 370 milliseconds

1 2