Home
last modified time | relevance | path

Searched refs:MethodIds (Results 1 – 8 of 8) sorted by relevance

/art/dexlayout/
Dcompact_dex_writer.cc43 std::vector<uint32_t> debug_info_offsets(header_->MethodIds().Size(), 0u); in WriteDebugInfoOffsetTable()
290 header.method_ids_size_ = header_->MethodIds().Size(); in WriteHeader()
291 header.method_ids_off_ = header_->MethodIds().GetOffset(); in WriteHeader()
334 std::vector<bool> saw_method_id(header_->MethodIds().Size(), false); in CanGenerateCompactDex()
335 std::vector<dex_ir::CodeItem*> method_id_code_item(header_->MethodIds().Size(), nullptr); in CanGenerateCompactDex()
336 std::vector<dex_ir::DebugInfoItem*> method_id_debug_info(header_->MethodIds().Size(), nullptr); in CanGenerateCompactDex()
Ddex_ir.cc82 [](const dex_ir::Header* h) { return h->MethodIds().Size(); }, in __anon1a8407770902()
83 [](const dex_ir::Header* h) { return h->MethodIds().GetOffset(); } in __anon1a8407770a02()
Ddex_ir_builder.cc294 header->MethodIds().SetOffset(disk_header.method_ids_off_); in DexIrBuilder()
361 CHECK_EQ(item->size_, header_->MethodIds().Size()); in CheckAndSetRemainingOffsets()
362 CHECK_EQ(item->offset_, header_->MethodIds().GetOffset()); in CheckAndSetRemainingOffsets()
470 CreateAndAddIndexedItem(header_->MethodIds(), in CreateMethodId()
471 header_->MethodIds().GetOffset() + i * MethodId::ItemSize(), in CreateMethodId()
541 field_or_method_id = header_->MethodIds()[index]; in CreateMethodHandleItem()
756 MethodId* method_id = header_->MethodIds()[methods[i].method_idx_]; in CreateAnnotationsDirectoryItem()
772 MethodId* method_id = header_->MethodIds()[parameters[i].method_idx_]; in CreateAnnotationsDirectoryItem()
1076 if (index < header_->MethodIds().Size()) { in GetIdFromInstruction()
1077 method_ids->push_back(header_->MethodIds()[index]); in GetIdFromInstruction()
[all …]
Ddex_writer.cc338 for (auto& method_id : header_->MethodIds()) { in WriteMethodIds()
348 header_->MethodIds().SetOffset(start); in WriteMethodIds()
742 header_->MethodIds().Size(), in GenerateAndWriteMapItems()
743 header_->MethodIds().GetOffset())); in GenerateAndWriteMapItems()
822 header.method_ids_size_ = header_->MethodIds().Size(); in WriteHeader()
823 header.method_ids_off_ = header_->MethodIds().GetOffset(); in WriteHeader()
Ddexlayout.cc490 if (index < header->MethodIds().Size()) { in IndexString()
491 dex_ir::MethodId* method_id = header->MethodIds()[index]; in IndexString()
523 if (index < header->MethodIds().Size()) { in IndexString()
524 dex_ir::MethodId* method_id = header->MethodIds()[index]; in IndexString()
681 fprintf(out_file_, "method_ids_size : %d\n", header_->MethodIds().Size()); in DumpFileHeader()
683 header_->MethodIds().GetOffset(), header_->MethodIds().GetOffset()); in DumpFileHeader()
1098 dex_ir::MethodId* method_id = header_->MethodIds()[idx]; in DumpBytecodes()
1242 dex_ir::MethodId* method_id = header_->MethodIds()[idx]; in DumpMethod()
1980 for (dex_ir::MethodId* id : fixups->MethodIds()) { in LayoutStringData()
Ddex_visualize.cc199 for (dex_ir::MethodId* method_id : fixups->MethodIds()) { in DumpMethodItem()
Ddex_verify.cc41 !VerifyIds(orig_header->MethodIds(), output_header->MethodIds(), "method ids", error_msg)) { in VerifyOutputDexFile()
Ddex_ir.h454 IndexedCollectionVector<MethodId>& MethodIds() { return method_ids_; } in MethodIds() function
455 const IndexedCollectionVector<MethodId>& MethodIds() const { return method_ids_; } in MethodIds() function
1032 const std::vector<MethodId*>& MethodIds() const { return method_ids_; } in MethodIds() function