Searched refs:ProtoIds (Results 1 – 7 of 7) sorted by relevance
/art/dexlayout/ |
D | dex_ir.cc | 72 [](const dex_ir::Header* h) { return h->ProtoIds().Size(); }, in __anon2b802b990502() 73 [](const dex_ir::Header* h) { return h->ProtoIds().GetOffset(); } in __anon2b802b990602()
|
D | dex_writer.cc | 303 for (auto& proto_id : header_->ProtoIds()) { in WriteProtoIds() 316 header_->ProtoIds().SetOffset(start); in WriteProtoIds() 738 header_->ProtoIds().Size(), in GenerateAndWriteMapItems() 739 header_->ProtoIds().GetOffset())); in GenerateAndWriteMapItems() 820 header.proto_ids_size_ = header_->ProtoIds().Size(); in WriteHeader() 821 header.proto_ids_off_ = header_->ProtoIds().GetOffset(); in WriteHeader()
|
D | dex_ir_builder.cc | 284 header->ProtoIds().SetOffset(disk_header.proto_ids_off_); in DexIrBuilder() 353 CHECK_EQ(item->size_, header_->ProtoIds().Size()); in CheckAndSetRemainingOffsets() 354 CHECK_EQ(item->offset_, header_->ProtoIds().GetOffset()); in CheckAndSetRemainingOffsets() 450 CreateAndAddIndexedItem(header_->ProtoIds(), in CreateProtoId() 451 header_->ProtoIds().GetOffset() + i * ProtoId::ItemSize(), in CreateProtoId() 474 header_->ProtoIds()[disk_method_id.proto_idx_.index_], in CreateMethodId() 1157 item->SetProtoId(header_->ProtoIds()[proto_index]); in ReadEncodedValue()
|
D | compact_dex_writer.cc | 286 header.proto_ids_size_ = header_->ProtoIds().Size(); in WriteHeader() 287 header.proto_ids_off_ = header_->ProtoIds().GetOffset(); in WriteHeader()
|
D | dexlayout.cc | 463 if (secondary_index < header->ProtoIds().Size()) { in IndexString() 464 dex_ir::ProtoId* proto_id = header->ProtoIds()[secondary_index]; in IndexString() 605 fprintf(out_file_, "proto_ids_size : %d\n", header_->ProtoIds().Size()); in DumpFileHeader() 607 header_->ProtoIds().GetOffset(), header_->ProtoIds().GetOffset()); in DumpFileHeader()
|
D | dex_verify.cc | 39 !VerifyIds(orig_header->ProtoIds(), output_header->ProtoIds(), "proto ids", error_msg) || in VerifyOutputDexFile()
|
D | dex_ir.h | 442 IndexedCollectionVector<ProtoId>& ProtoIds() { return proto_ids_; } in ProtoIds() function 443 const IndexedCollectionVector<ProtoId>& ProtoIds() const { return proto_ids_; } in ProtoIds() function
|