Home
last modified time | relevance | path

Searched refs:other_dex_file (Results 1 – 2 of 2) sorted by relevance

/art/runtime/
Dmethod_helper-inl.h37 const DexFile* other_dex_file = other->method_->GetDexFile(); in HasSameNameAndSignature() local
39 other_dex_file->GetMethodId(other->GetMethod()->GetDexMethodIndex()); in HasSameNameAndSignature()
40 if (!DexFileStringEquals(dex_file, mid.name_idx_, other_dex_file, other_mid.name_idx_)) { in HasSameNameAndSignature()
43 return dex_file->GetMethodSignature(mid) == other_dex_file->GetMethodSignature(other_mid); in HasSameNameAndSignature()
Dclass_linker.cc4823 const DexFile* other_dex_file = other->GetDexFile(); in HasSameNameAndSignature() local
4824 const DexFile::MethodId& other_mid = other_dex_file->GetMethodId(other->GetDexMethodIndex()); in HasSameNameAndSignature()
4825 if (dex_file_ == other_dex_file) { in HasSameNameAndSignature()
4830 const char* other_name = other_dex_file->StringDataAndUtf16LengthByIdx(other_mid.name_idx_, in HasSameNameAndSignature()
4835 return dex_file_->GetMethodSignature(*mid_) == other_dex_file->GetMethodSignature(other_mid); in HasSameNameAndSignature()