/aosp12/art/libprofile/profile/ |
H A D | profile_boot_info.cc | 109 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()
|
/aosp12/art/dexlayout/ |
H A D | dex_visualize.cc | 41 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()
|
H A D | dex_visualize.h | 38 size_t dex_file_index, 41 void ShowDexSectionStatistics(dex_ir::Header* header, size_t dex_file_index);
|
H A D | dexlayout.h | 116 size_t dex_file_index,
|
H A D | dexlayout.cc | 1880 size_t dex_file_index, in ProcessDexFile() argument 1904 VisualizeDexLayout(header_, dex_file, dex_file_index, info_); in ProcessDexFile() 1909 ShowDexSectionStatistics(header_, dex_file_index); in ProcessDexFile()
|
/aosp12/art/runtime/ |
H A D | vdex_file.h | 274 const uint8_t* GetNextDexFileData(const uint8_t* cursor, uint32_t dex_file_index) const; 276 const uint8_t* GetNextTypeLookupTableData(const uint8_t* cursor, uint32_t dex_file_index) const; 279 uint32_t GetLocationChecksum(uint32_t dex_file_index) const { in GetLocationChecksum() argument 280 DCHECK_LT(dex_file_index, GetNumberOfDexFiles()); in GetLocationChecksum() 281 return GetDexChecksumAt(dex_file_index); in GetLocationChecksum()
|
H A D | vdex_file.cc | 169 const uint8_t* VdexFile::GetNextDexFileData(const uint8_t* cursor, uint32_t dex_file_index) const { in GetNextDexFileData() 174 } else if (dex_file_index >= GetNumberOfDexFiles()) { in GetNextDexFileData() 186 uint32_t dex_file_index) const { in GetNextTypeLookupTableData() 190 } else if (dex_file_index >= GetNumberOfDexFiles()) { in GetNextTypeLookupTableData()
|
H A D | class_loader_context.cc | 419 size_t dex_file_index = 0; in OpenDexFiles() local 442 if (dex_file_index >= fds.size()) { in OpenDexFiles() 448 fd = fds[dex_file_index++]; in OpenDexFiles() 507 if (dex_file_index != fds.size()) { in OpenDexFiles() 508 LOG(WARNING) << fds.size() << " FDs provided but only " << dex_file_index in OpenDexFiles()
|
H A D | oat_file.cc | 435 size_t dex_file_index, in ReadIndexBssMapping() argument 445 dex_file_index, in ReadIndexBssMapping() 466 dex_file_index, in ReadIndexBssMapping()
|
/aosp12/art/test/809-checker-invoke-super-bss/smali/ |
H A D | Class.smali | 19 ## 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…
|
/aosp12/art/test/809-checker-invoke-super-bss/smali-multidex/ |
H A D | OtherClass.smali | 19 ## 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…
|
/aosp12/art/test/811-checker-invoke-super-secondary/smali-ex/ |
H A D | OtherClass.smali | 19 ## 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…
|
/aosp12/art/runtime/verifier/ |
H A D | verifier_deps.cc | 521 uint32_t dex_file_index = 0; in Encode() local 525 (reinterpret_cast<uint32_t*>(buffer->data()))[dex_file_index++] = buffer->size(); in Encode() 563 uint32_t dex_file_index = 0; in ParseStoredData() local 567 cursor = data_start + reinterpret_cast<const uint32_t*>(data_start)[dex_file_index++]; in ParseStoredData() 595 uint32_t dex_file_index = 0; in ParseVerifiedClasses() local 599 cursor = data_start + reinterpret_cast<const uint32_t*>(data_start)[dex_file_index++]; in ParseVerifiedClasses()
|
/aosp12/art/dex2oat/linker/ |
H A D | image_writer.cc | 1562 size_t dex_file_index; in operator ()() local 1566 dex_file_index = 0u; in operator ()() 1574 klasses_.push_back({klass, dex_file_index, class_def_index, dimension}); in operator ()() 1587 if (last_dex_file_index != entry.dex_file_index) { in ProcessCollectedClasses() 1588 if (UNLIKELY(entry.dex_file_index == 0u)) { in ProcessCollectedClasses() 1591 uint32_t dex_file_index = entry.dex_file_index - 1u; // 0 is for primitive types. in ProcessCollectedClasses() local 1592 last_oat_index = image_writer->GetOatIndexForDexFile(dex_files_[dex_file_index]); in ProcessCollectedClasses() 1594 last_dex_file_index = entry.dex_file_index; in ProcessCollectedClasses() 1687 size_t dex_file_index; member 1692 return std::tie(dex_file_index, class_def_index, dimension) < in operator <() [all …]
|