Home
last modified time | relevance | path

Searched refs:dex_file_index (Results 1 – 16 of 16) sorted by relevance

/art/dexlayout/
Ddex_visualize.h38 size_t dex_file_index,
41 void ShowDexSectionStatistics(dex_ir::Header* header, size_t dex_file_index);
Ddex_visualize.cc41 size_t dex_file_index, in MultidexName() argument
43 return prefix + ((dex_file_index > 0) ? std::to_string(dex_file_index + 1) : "") + suffix; in MultidexName()
247 size_t dex_file_index, in VisualizeDexLayout() argument
250 if (!dumper->OpenAndPrintHeader(dex_file_index)) { in VisualizeDexLayout()
319 void ShowDexSectionStatistics(dex_ir::Header* header, size_t dex_file_index) { in ShowDexSectionStatistics() argument
322 MultidexName("classes", dex_file_index, ".dex").c_str(), in ShowDexSectionStatistics()
Ddexlayout.h119 size_t dex_file_index,
Ddexlayout.cc2182 size_t dex_file_index, in ProcessDexFile() argument
2206 VisualizeDexLayout(header_, dex_file, dex_file_index, info_); in ProcessDexFile()
2211 ShowDexSectionStatistics(header_, dex_file_index); in ProcessDexFile()
/art/libprofile/profile/
Dprofile_boot_info.cc109 uint32_t dex_file_index; in Load() local
111 int bytes_read = TEMP_FAILURE_RETRY(read(fd, &dex_file_index, sizeof(dex_file_index))); in Load()
120 methods_.push_back(std::make_pair(dex_file_index, method_id)); in Load()
/art/test/809-checker-invoke-super-bss/smali-multidex/
DOtherClass.smali19 ## CHECK-DAG: InvokeStaticOrDirect dex_file_index:<<Index1:\d+>> method_name:SuperSuperClass.$n…
20 ## CHECK-DAG: InvokeStaticOrDirect dex_file_index:<<Index2:\d+>> method_name:SuperSuperClass.$n…
21 ## CHECK-DAG: InvokeStaticOrDirect dex_file_index:<<Index3:\d+>> method_name:SuperSuperClass.$n…
/art/test/809-checker-invoke-super-bss/smali/
DClass.smali19 ## CHECK-DAG: InvokeStaticOrDirect dex_file_index:<<Index1:\d+>> method_name:SuperSuperClass.$n…
20 ## CHECK-DAG: InvokeStaticOrDirect dex_file_index:<<Index2:\d+>> method_name:SuperSuperClass.$n…
21 ## CHECK-DAG: InvokeStaticOrDirect dex_file_index:<<Index3:\d+>> method_name:SuperSuperClass.$n…
/art/runtime/
Dvdex_file.h271 const uint8_t* GetNextDexFileData(const uint8_t* cursor, uint32_t dex_file_index) const;
273 const uint8_t* GetNextTypeLookupTableData(const uint8_t* cursor, uint32_t dex_file_index) const;
276 uint32_t GetLocationChecksum(uint32_t dex_file_index) const { in GetLocationChecksum() argument
277 DCHECK_LT(dex_file_index, GetNumberOfDexFiles()); in GetLocationChecksum()
278 return GetDexChecksumAt(dex_file_index); in GetLocationChecksum()
Dvdex_file.cc184 const uint8_t* VdexFile::GetNextDexFileData(const uint8_t* cursor, uint32_t dex_file_index) const { in GetNextDexFileData()
189 } else if (dex_file_index >= GetNumberOfDexFiles()) { in GetNextDexFileData()
201 uint32_t dex_file_index) const { in GetNextTypeLookupTableData()
205 } else if (dex_file_index >= GetNumberOfDexFiles()) { in GetNextTypeLookupTableData()
Dclass_loader_context.cc442 size_t dex_file_index = 0; in OpenDexFiles() local
465 if (dex_file_index >= fds.size()) { in OpenDexFiles()
471 fd = fds[dex_file_index++]; in OpenDexFiles()
528 if (dex_file_index != fds.size()) { in OpenDexFiles()
529 LOG(WARNING) << fds.size() << " FDs provided but only " << dex_file_index in OpenDexFiles()
Doat_file.cc419 size_t dex_file_index, in ReadIndexBssMapping() argument
429 dex_file_index, in ReadIndexBssMapping()
450 dex_file_index, in ReadIndexBssMapping()
/art/test/811-checker-invoke-super-secondary/smali-ex/
DOtherClass.smali19 ## CHECK-DAG: InvokeStaticOrDirect dex_file_index:<<Index1:\d+>> method_name:SuperSuperClass.$n…
20 ## CHECK-DAG: InvokeStaticOrDirect dex_file_index:<<Index2:\d+>> method_name:SuperSuperClass.$n…
/art/runtime/entrypoints/
Dentrypoint_utils-inl.h138 const uint32_t dex_file_index = method_info.GetDexFileIndex(); in GetResolvedMethod() local
144 DCHECK_LT(dex_file_index, bcp_dex_files.size()) in GetResolvedMethod()
148 const DexFile* dex_file = bcp_dex_files[dex_file_index]; in GetResolvedMethod()
154 DCHECK_LT(dex_file_index, oat_dex_files.size()) in GetResolvedMethod()
158 const OatDexFile* odf = oat_dex_files[dex_file_index]; in GetResolvedMethod()
175 dex_file_index == MethodInfo::kSameDexFile) in GetResolvedMethod()
/art/runtime/verifier/
Dverifier_deps.cc519 uint32_t dex_file_index = 0; in Encode() local
523 (reinterpret_cast<uint32_t*>(buffer->data()))[dex_file_index++] = buffer->size(); in Encode()
559 uint32_t dex_file_index = 0; in ParseStoredData() local
563 cursor = data_start + reinterpret_cast<const uint32_t*>(data_start)[dex_file_index++]; in ParseStoredData()
588 uint32_t dex_file_index = 0; in ParseVerifiedClasses() local
592 cursor = data_start + reinterpret_cast<const uint32_t*>(data_start)[dex_file_index++]; in ParseVerifiedClasses()
/art/dex2oat/linker/
Dimage_writer.cc1413 size_t dex_file_index; in operator ()() local
1417 dex_file_index = 0u; in operator ()()
1422 dex_file_index = std::distance(dex_files_.begin(), it) + 1u; // 0 is for primitive types. in operator ()()
1425 klasses_.push_back({klass, dex_file_index, class_def_index, dimension}); in operator ()()
1438 if (last_dex_file_index != entry.dex_file_index) { in ProcessCollectedClasses()
1439 if (UNLIKELY(entry.dex_file_index == 0u)) { in ProcessCollectedClasses()
1442 uint32_t dex_file_index = entry.dex_file_index - 1u; // 0 is for primitive types. in ProcessCollectedClasses() local
1443 last_oat_index = image_writer->GetOatIndexForDexFile(dex_files_[dex_file_index]); in ProcessCollectedClasses()
1445 last_dex_file_index = entry.dex_file_index; in ProcessCollectedClasses()
1541 size_t dex_file_index; member
[all …]
/art/runtime/gc/space/
Dimage_space.cc3454 size_t dex_file_index = 0; in ValidateOatFile() local
3462 DCHECK(dex_filenames.empty() || dex_file_index < dex_filenames.size()); in ValidateOatFile()
3464 dex_filenames.empty() ? oat_dex_file->GetDexFileLocation() : dex_filenames[dex_file_index]; in ValidateOatFile()
3465 int dex_fd = dex_file_index < dex_fds.size() ? dex_fds[dex_file_index] : -1; in ValidateOatFile()
3466 dex_file_index++; in ValidateOatFile()