Home | History | Annotate | Download | only in runtime

Lines Matching defs:method_idx

2359                                                  uint32_t method_idx) {
2374 if (it.GetMemberIndex() == method_idx) {
2381 if (it.GetMemberIndex() == method_idx) {
2388 LOG(FATAL) << "Failed to find method index " << method_idx << " in " << dex_file.GetLocation();
2503 uint32_t method_idx) {
2508 uint32_t oat_method_idx = GetOatMethodIndexFromMethodIndex(dex_file, class_def_idx, method_idx);
2514 uint32_t method_idx) {
2519 uint32_t oat_method_idx = GetOatMethodIndexFromMethodIndex(dex_file, class_def_idx, method_idx);
3962 uint32_t method_idx = proxy_method->GetDexMethodIndex();
3963 mirror::ArtMethod* resolved_method = dex_cache->GetResolvedMethod(method_idx);
5000 size_t method_idx = local_method->GetMethodIndexDuringLinking();
5001 if (method_idx < super_vtable_length &&
5002 local_method == vtable->GetWithoutChecks(method_idx)) {
5672 mirror::ArtMethod* ClassLinker::ResolveMethod(const DexFile& dex_file, uint32_t method_idx,
5679 mirror::ArtMethod* resolved = dex_cache->GetResolvedMethod(method_idx);
5684 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
5690 // Scan using method_idx, this saves string compares but will only hit for matching dex
5695 resolved = klass->FindDirectMethod(dex_cache.Get(), method_idx);
5698 resolved = klass->FindInterfaceMethod(dex_cache.Get(), method_idx);
5703 resolved = klass->FindVirtualMethod(dex_cache.Get(), method_idx);
5730 dex_cache->SetResolvedMethod(method_idx, resolved);
5898 const char* ClassLinker::MethodShorty(uint32_t method_idx, mirror::ArtMethod* referrer,
5903 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);