Home
last modified time | relevance | path

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

/art/dexlayout/
Dcompact_dex_writer.cc44 std::vector<uint32_t> debug_info_offsets(header_->MethodIds().Size(), 0u); in WriteDebugInfoOffsetTable()
292 header.method_ids_size_ = header_->MethodIds().Size(); in WriteHeader()
293 header.method_ids_off_ = header_->MethodIds().GetOffset(); in WriteHeader()
336 std::vector<bool> saw_method_id(header_->MethodIds().Size(), false); in CanGenerateCompactDex()
337 std::vector<dex_ir::CodeItem*> method_id_code_item(header_->MethodIds().Size(), nullptr); in CanGenerateCompactDex()
338 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 __anon0e6c32920902()
83 [](const dex_ir::Header* h) { return h->MethodIds().GetOffset(); } in __anon0e6c32920a02()
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 …]
Ddexlayout.cc423 if (index < header->MethodIds().Size()) { in IndexString()
424 dex_ir::MethodId* method_id = header->MethodIds()[index]; in IndexString()
456 if (index < header->MethodIds().Size()) { in IndexString()
457 dex_ir::MethodId* method_id = header->MethodIds()[index]; in IndexString()
611 fprintf(out_file_, "method_ids_size : %d\n", header_->MethodIds().Size()); in DumpFileHeader()
613 header_->MethodIds().GetOffset(), header_->MethodIds().GetOffset()); in DumpFileHeader()
1028 dex_ir::MethodId* method_id = header_->MethodIds()[idx]; in DumpBytecodes()
1170 dex_ir::MethodId* method_id = header_->MethodIds()[idx]; in DumpMethod()
1678 for (dex_ir::MethodId* id : fixups->MethodIds()) { in LayoutStringData()
Ddex_writer.cc340 for (auto& method_id : header_->MethodIds()) { in WriteMethodIds()
350 header_->MethodIds().SetOffset(start); in WriteMethodIds()
744 header_->MethodIds().Size(), in GenerateAndWriteMapItems()
745 header_->MethodIds().GetOffset())); in GenerateAndWriteMapItems()
824 header.method_ids_size_ = header_->MethodIds().Size(); in WriteHeader()
825 header.method_ids_off_ = header_->MethodIds().GetOffset(); in WriteHeader()
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.h446 IndexedCollectionVector<MethodId>& MethodIds() { return method_ids_; } in MethodIds() function
447 const IndexedCollectionVector<MethodId>& MethodIds() const { return method_ids_; } in MethodIds() function
1024 const std::vector<MethodId*>& MethodIds() const { return method_ids_; } in MethodIds() function