Searched refs:MethodIds (Results 1 – 8 of 8) sorted by relevance
/art/dexlayout/ |
D | compact_dex_writer.cc | 43 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()
|
D | dex_ir.cc | 82 [](const dex_ir::Header* h) { return h->MethodIds().Size(); }, in __anon2b802b990902() 83 [](const dex_ir::Header* h) { return h->MethodIds().GetOffset(); } in __anon2b802b990a02()
|
D | dex_ir_builder.cc | 294 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 …]
|
D | dexlayout.cc | 423 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()
|
D | dex_writer.cc | 340 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()
|
D | dex_visualize.cc | 199 for (dex_ir::MethodId* method_id : fixups->MethodIds()) { in DumpMethodItem()
|
D | dex_verify.cc | 41 !VerifyIds(orig_header->MethodIds(), output_header->MethodIds(), "method ids", error_msg)) { in VerifyOutputDexFile()
|
D | dex_ir.h | 446 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
|