Searched refs:other_dex_file (Results 1 – 2 of 2) sorted by relevance
140 const DexFile& other_dex_file = resolver->dex_file_; in LookupMethodIn() local141 ClassAccessor other_dex_accessor(other_dex_file, *kls.GetClassDef()); in LookupMethodIn()143 const dex::MethodId& other_method_id = other_dex_file.GetMethodId(method.GetIndex()); in LookupMethodIn()144 if (HasSameNameAndSignature(other_dex_file, in LookupMethodIn()164 const dex::TypeList* interfaces = other_dex_file.GetInterfacesList(*kls.GetClassDef()); in LookupMethodIn()195 const DexFile& other_dex_file = resolver->dex_file_; in LookupFieldIn() local196 ClassAccessor other_dex_accessor(other_dex_file, *kls.GetClassDef()); in LookupFieldIn()198 const dex::FieldId& other_field_id = other_dex_file.GetFieldId(field.GetIndex()); in LookupFieldIn()199 if (HasSameNameAndType(other_dex_file, in LookupFieldIn()208 const dex::TypeList* interfaces = other_dex_file.GetInterfacesList(*kls.GetClassDef()); in LookupFieldIn()[all …]
6411 const DexFile* other_dex_file = other->GetDexFile(); in HasSameNameAndSignature() local6412 const dex::MethodId& other_mid = other_dex_file->GetMethodId(other->GetDexMethodIndex()); in HasSameNameAndSignature()6413 if (dex_file_ == other_dex_file) { in HasSameNameAndSignature()6418 const char* other_name = other_dex_file->StringDataAndUtf16LengthByIdx(other_mid.name_idx_, in HasSameNameAndSignature()6423 return dex_file_->GetMethodSignature(*mid_) == other_dex_file->GetMethodSignature(other_mid); in HasSameNameAndSignature()