Searched refs:proto_ids_size_ (Results 1 – 7 of 7) sorted by relevance
/art/libdexfile/dex/ |
D | dex_file.h | 154 uint32_t proto_ids_size_ = 0; // number of ProtoIds, we don't support more than 65535 member 573 return header_->proto_ids_size_; in NumProtoIds() 584 CHECK_LT(&proto_id, proto_ids_ + header_->proto_ids_size_) << GetLocation(); in GetIndexForProtoId()
|
D | dex_file_verifier.cc | 705 header_->proto_ids_size_, in CheckHeader() 708 CheckSizeLimit(header_->proto_ids_size_, DexFile::kDexNoIndex16, "proto-ids") && in CheckHeader() 823 ((header_->proto_ids_off_ != 0) || (header_->proto_ids_size_ != 0)))) { in CheckMap() 1173 if (!CheckIndex(idx, header_->proto_ids_size_, "method_type value")) { in CheckEncodedValue() 1420 !CheckIndex(method_id->proto_idx_.index_, header_->proto_ids_size_, "method_id.proto") || in CheckIntraMethodIdItem() 2326 expected_size = header_->proto_ids_size_; in CheckIntraIdSection() 3845 DCHECK_LE(method_id.proto_idx_.index_, header_->proto_ids_size_); in CheckConstructorProperties()
|
D | dex_file_loader_test.cc | 432 EXPECT_EQ(2U, header.proto_ids_size_); in ValidateDexFileHeader()
|
D | test_dex_file_builder.h | 135 header->proto_ids_size_ = protos_.size();
|
/art/dexdump/ |
D | dexdump.cc | 675 fprintf(gOutFile, "proto_ids_size : %d\n", pHeader.proto_ids_size_); in dumpFileHeader() 977 if (secondary_index < pDexFile->GetHeader().proto_ids_size_) { in indexString() 995 if (index < pDexFile->GetHeader().proto_ids_size_) { in indexString()
|
/art/dex2oat/ |
D | dex2oat_test.cc | 1664 header->proto_ids_size_ = 0; in TEST_F()
|
/art/runtime/verifier/ |
D | method_verifier.cc | 361 if (UNLIKELY(idx >= dex_file_->GetHeader().proto_ids_size_)) { in CheckPrototypeIndex() 363 << dex_file_->GetHeader().proto_ids_size_ << ")"; in CheckPrototypeIndex()
|