/art/dexlayout/ |
D | dex_visualize.h | 38 size_t dex_file_index, 41 void ShowDexSectionStatistics(dex_ir::Header* header, size_t dex_file_index);
|
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()
|
D | dexlayout.h | 119 size_t dex_file_index,
|
D | dexlayout.cc | 2182 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/ |
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()
|
/art/test/809-checker-invoke-super-bss/smali-multidex/ |
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…
|
/art/test/809-checker-invoke-super-bss/smali/ |
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…
|
/art/runtime/ |
D | vdex_file.h | 271 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()
|
D | vdex_file.cc | 184 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()
|
D | class_loader_context.cc | 442 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()
|
D | oat_file.cc | 419 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/ |
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…
|
/art/runtime/entrypoints/ |
D | entrypoint_utils-inl.h | 138 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/ |
D | verifier_deps.cc | 519 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/ |
D | image_writer.cc | 1413 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/ |
D | image_space.cc | 3454 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()
|