Home
last modified time | relevance | path

Searched refs:proto_ids_size_ (Results 1 – 9 of 9) sorted by relevance

/art/libdexfile/dex/
Ddex_file.h105 uint32_t proto_ids_size_ = 0; // number of ProtoIds, we don't support more than 65535 member
477 return header_->proto_ids_size_; in NumProtoIds()
488 CHECK_LT(&proto_id, proto_ids_ + header_->proto_ids_size_) << GetLocation(); in GetIndexForProtoId()
Ddex_file_verifier.cc629 header_->proto_ids_size_, in CheckHeader()
632 CheckSizeLimit(header_->proto_ids_size_, DexFile::kDexNoIndex16, "proto-ids") && in CheckHeader()
742 ((header_->proto_ids_off_ != 0) || (header_->proto_ids_size_ != 0)))) { in CheckMap()
1064 if (!CheckIndex(idx, header_->proto_ids_size_, "method_type value")) { in CheckEncodedValue()
1283 !CheckIndex(method_id->proto_idx_.index_, header_->proto_ids_size_, "method_id.proto") || in CheckIntraMethodIdItem()
2235 expected_size = header_->proto_ids_size_; in CheckIntraIdSection()
3663 DCHECK_LE(method_id.proto_idx_.index_, header_->proto_ids_size_); in CheckConstructorProperties()
Ddex_file_loader_test.cc294 EXPECT_EQ(2U, header.proto_ids_size_); in ValidateDexFileHeader()
Dtest_dex_file_builder.h135 header->proto_ids_size_ = protos_.size();
/art/dexdump/
Ddexdump.cc614 fprintf(gOutFile, "proto_ids_size : %d\n", pHeader.proto_ids_size_); in dumpFileHeader()
910 if (secondary_index < pDexFile->GetHeader().proto_ids_size_) { in indexString()
928 if (index < pDexFile->GetHeader().proto_ids_size_) { in indexString()
/art/dexlayout/
Dcompact_dex_writer.cc286 header.proto_ids_size_ = header_->ProtoIds().Size(); in WriteHeader()
Ddex_writer.cc820 header.proto_ids_size_ = header_->ProtoIds().Size(); in WriteHeader()
/art/runtime/verifier/
Dmethod_verifier.cc383 if (UNLIKELY(idx >= dex_file_->GetHeader().proto_ids_size_)) { in CheckPrototypeIndex()
385 << dex_file_->GetHeader().proto_ids_size_ << ")"; in CheckPrototypeIndex()
/art/dex2oat/
Ddex2oat_test.cc1955 header->proto_ids_size_ = 0; in TEST_F()