Home
last modified time | relevance | path

Searched refs:proto_ids_ (Results 1 – 4 of 4) sorted by relevance

/art/libdexfile/dex/
Ddex_file.h700 return proto_ids_[idx]; in GetProtoId()
704 CHECK_GE(&proto_id, proto_ids_) << GetLocation(); in GetIndexForProtoId()
705 CHECK_LT(&proto_id, proto_ids_ + header_->proto_ids_size_) << GetLocation(); in GetIndexForProtoId()
706 return &proto_id - proto_ids_; in GetIndexForProtoId()
1077 const ProtoId* const proto_ids_; variable
Ddex_file.cc116 proto_ids_(reinterpret_cast<const ProtoId*>(base + header_->proto_ids_off_)), in DexFile()
/art/dexlayout/
Ddex_ir.h212 CollectionVector<ProtoId>::Vector& ProtoIds() { return proto_ids_.Collection(); } in ProtoIds()
310 uint32_t ProtoIdsOffset() const { return proto_ids_.GetOffset(); } in ProtoIdsOffset()
331 void SetProtoIdsOffset(uint32_t new_offset) { proto_ids_.SetOffset(new_offset); } in SetProtoIdsOffset()
356 uint32_t ProtoIdsSize() const { return proto_ids_.Size(); } in ProtoIdsSize()
433 IndexedCollectionVector<ProtoId> proto_ids_; variable
Ddex_ir.cc342 AddIndexedItem(proto_ids_, proto_id, ProtoIdsOffset() + i * ProtoId::ItemSize(), i); in CreateProtoId()