Searched refs:proto_idx_ (Results 1 – 12 of 12) sorted by relevance
/art/runtime/mirror/ |
D | dex_cache_test.cc | 148 class_linker_->ResolveMethodType(dex_file, method1_id.proto_idx_, dex_cache, class_loader)); in TEST_F() 150 class_linker_->ResolveMethodType(dex_file, method2_id.proto_idx_, dex_cache, class_loader)); in TEST_F() 152 EXPECT_EQ(method1_type.Get(), dex_cache->GetResolvedMethodType(method1_id.proto_idx_)); in TEST_F() 153 EXPECT_EQ(method2_type.Get(), dex_cache->GetResolvedMethodType(method2_id.proto_idx_)); in TEST_F() 163 if (pair.index == method1_id.proto_idx_) { in TEST_F() 165 } else if (pair.index == method2_id.proto_idx_) { in TEST_F()
|
/art/runtime/ |
D | dex_file-inl.h | 96 return Signature(this, GetProtoId(method_id.proto_idx_)); in GetMethodSignature() 108 return StringDataByIdx(GetProtoId(GetMethodId(idx).proto_idx_).shorty_idx_); in GetMethodShorty() 112 return StringDataByIdx(GetProtoId(method_id.proto_idx_).shorty_idx_); in GetMethodShorty() 117 return StringDataAndUtf16LengthByIdx(GetProtoId(method_id.proto_idx_).shorty_idx_, length); in GetMethodShorty()
|
D | art_method.cc | 177 return mid.name_idx_ == mid2.name_idx_ && mid.proto_idx_ == mid2.proto_idx_; in HasSameNameAndSignature() 242 other_dexfile.GetProtoId(name_and_sig_mid.proto_idx_)); in FindDexMethodIndexInOtherDexFile()
|
D | dex_file_verifier_test.cc | 169 method_id->proto_idx_ = 0xFF; in TEST_F() 1436 CHECK_EQ(dex_file->GetMethodId(method_idx).proto_idx_ + 1u, in TEST_F() 1437 dex_file->GetMethodId(method_idx + 1).proto_idx_); in TEST_F() 1439 uint32_t proto1_idx = dex_file->GetMethodId(method_idx).proto_idx_; in TEST_F()
|
D | dex_file.h | 187 uint16_t proto_idx_; // index into proto_ids_ array for method prototype member 680 return GetProtoId(method_id.proto_idx_); in GetMethodPrototype()
|
D | dex_file_verifier.cc | 2200 if (UNLIKELY(!CheckIndex(item->proto_idx_, dex_file_->NumProtoIds(), in CheckInterMethodIdItem() 2216 if (UNLIKELY(prev_item->proto_idx_ >= item->proto_idx_)) { in CheckInterMethodIdItem() 3243 const DexFile::ProtoId* const proto_id = CheckLoadProtoId(method_id->proto_idx_, in CheckConstructorProperties()
|
D | dex_file_test.cc | 500 const DexFile::ProtoId& signature = java_lang_dex_file_->GetProtoId(to_find.proto_idx_); in TEST_F()
|
D | class_linker_test.cc | 1507 class_linker_->ResolveMethodType(dex_file, method1_id.proto_idx_, dex_cache, class_loader)); in TEST_F() 1520 class_linker_->ResolveMethodType(dex_file, method1_id.proto_idx_, dex_cache, class_loader)); in TEST_F() 1531 class_linker_->ResolveMethodType(dex_file, method2_id.proto_idx_, dex_cache, class_loader)); in TEST_F()
|
D | dex_file.cc | 738 if (proto_idx > method.proto_idx_) { in FindMethodId() 740 } else if (proto_idx < method.proto_idx_) { in FindMethodId()
|
D | class_linker.cc | 3324 if (strcmp("V", dex_file.GetShorty(method_id.proto_idx_)) == 0) { in LoadMethod() 5733 return mid_->name_idx_ == other_mid.name_idx_ && mid_->proto_idx_ == other_mid.proto_idx_; in HasSameNameAndSignature()
|
/art/runtime/verifier/ |
D | method_verifier.cc | 2917 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_; in CodeFlowVerifyInstruction() 2941 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_; in CodeFlowVerifyInstruction() 3016 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_; in CodeFlowVerifyInstruction() 3071 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_; in CodeFlowVerifyInstruction() 4133 dex_file_->GetProtoId(dex_file_->GetMethodId(method_idx).proto_idx_)); in VerifyInvocationArgsUnresolvedMethod()
|
/art/dexlayout/ |
D | dex_ir.cc | 385 GetProtoId(disk_method_id.proto_idx_), in CreateMethodId()
|