Home
last modified time | relevance | path

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

/art/runtime/utils/
Ddex_cache_arrays_layout-inl.h46 RoundUp(method_types_offset_ + MethodTypesSize(header.proto_ids_size_), in DexCacheArraysLayout()
/art/libdexfile/dex/
Ddex_file.h104 uint32_t proto_ids_size_ = 0; // number of ProtoIds, we don't support more than 65535 member
461 return header_->proto_ids_size_; in NumProtoIds()
472 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()
3664 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.h137 header->proto_ids_size_ = protos_.size(); in Build()
/art/dexlayout/
Dcompact_dex_writer.cc288 header.proto_ids_size_ = header_->ProtoIds().Size(); in WriteHeader()
Ddex_writer.cc820 header.proto_ids_size_ = header_->ProtoIds().Size(); in WriteHeader()
/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/runtime/verifier/
Dmethod_verifier.cc381 if (UNLIKELY(idx >= dex_file_->GetHeader().proto_ids_size_)) { in CheckPrototypeIndex()
383 << dex_file_->GetHeader().proto_ids_size_ << ")"; in CheckPrototypeIndex()
/art/dex2oat/
Ddex2oat_test.cc2220 header->proto_ids_size_ = 0; in TEST_F()