/art/runtime/mirror/ |
class.cc | 355 ArtMethod* Class::FindInterfaceMethod(const DexCache* dex_cache, uint32_t dex_method_idx) const { 357 ArtMethod* method = FindDeclaredVirtualMethod(dex_cache, dex_method_idx); 365 method = iftable->GetInterface(i)->FindDeclaredVirtualMethod(dex_cache, dex_method_idx); 386 ArtMethod* Class::FindDeclaredDirectMethod(const DexCache* dex_cache, uint32_t dex_method_idx) const { 390 if (method->GetDexMethodIndex() == dex_method_idx) { 408 ArtMethod* Class::FindDirectMethod(const DexCache* dex_cache, uint32_t dex_method_idx) const { 410 ArtMethod* method = klass->FindDeclaredDirectMethod(dex_cache, dex_method_idx); 431 ArtMethod* Class::FindDeclaredVirtualMethod(const DexCache* dex_cache, uint32_t dex_method_idx) const { 435 if (method->GetDexMethodIndex() == dex_method_idx) { 453 ArtMethod* Class::FindVirtualMethod(const DexCache* dex_cache, uint32_t dex_method_idx) const [all...] |
class.h | 566 ArtMethod* FindInterfaceMethod(const DexCache* dex_cache, uint32_t dex_method_idx) const 575 ArtMethod* FindDeclaredVirtualMethod(const DexCache* dex_cache, uint32_t dex_method_idx) const 581 ArtMethod* FindVirtualMethod(const DexCache* dex_cache, uint32_t dex_method_idx) const 587 ArtMethod* FindDeclaredDirectMethod(const DexCache* dex_cache, uint32_t dex_method_idx) const 593 ArtMethod* FindDirectMethod(const DexCache* dex_cache, uint32_t dex_method_idx) const [all...] |
/art/runtime/entrypoints/quick/ |
quick_invoke_entrypoints.cc | 114 uint32_t dex_method_idx; local 116 dex_method_idx = instr->VRegB_35c(); 119 dex_method_idx = instr->VRegB_3rc(); 121 method = FindMethodFromCode(dex_method_idx, this_object, caller_method, self,
|
quick_trampoline_entrypoints.cc | 453 uint32_t dex_method_idx; local 513 dex_method_idx = (is_range) ? instr->VRegB_3rc() : instr->VRegB_35c(); 518 dex_method_idx = called->GetDexMethodIndex(); 522 dex_file->GetMethodShorty(dex_file->GetMethodId(dex_method_idx), &shorty_len); 528 called = linker->ResolveMethod(dex_method_idx, caller, invoke_type);
|
/art/runtime/ |
object_utils.h | 419 uint32_t dex_method_idx = method_->GetDexMethodIndex(); local 420 if (dex_method_idx != DexFile::kDexNoIndex) { 421 return dex_file.GetMethodName(dex_file.GetMethodId(dex_method_idx)); 440 uint32_t dex_method_idx = method_->GetDexMethodIndex(); local 441 const DexFile::MethodId& method_id = dex_file.GetMethodId(dex_method_idx); 465 uint32_t dex_method_idx = method_->GetDexMethodIndex(); local 466 if (dex_method_idx != DexFile::kDexNoIndex) { 467 return dex_file.GetMethodSignature(dex_file.GetMethodId(dex_method_idx)); 510 uint32_t dex_method_idx = method_->GetDexMethodIndex(); local 511 if (dex_method_idx != DexFile::kDexNoIndex) [all...] |
class_linker.cc | 1850 uint32_t dex_method_idx = it.GetMemberIndex(); local [all...] |
/art/oatdump/ |
oatdump.cc | 307 uint32_t dex_method_idx, const DexFile::CodeItem* code_item, 309 os << StringPrintf("%d: %s (dex_method_idx=%d)\n", 310 class_method_index, PrettyMethod(dex_method_idx, dex_file, true).c_str(), 311 dex_method_idx); 324 DumpVerifier(indent2_os, dex_method_idx, &dex_file, class_def, code_item, 365 DumpCode(indent2_os, oat_method, dex_method_idx, &dex_file, class_def, code_item, 555 uint32_t dex_method_idx, const DexFile* dex_file, 561 if (dex_file != verified_dex_file || verified_dex_method_idx != dex_method_idx) { 566 code_item, dex_method_idx, NULL, 570 verified_dex_method_idx = dex_method_idx; [all...] |
/art/runtime/entrypoints/portable/ |
portable_trampoline_entrypoints.cc | 374 uint32_t dex_method_idx = (is_range) ? instr->VRegB_3rc() : instr->VRegB_35c(); local 375 called = linker->ResolveMethod(dex_method_idx, caller, invoke_type);
|
/art/runtime/verifier/ |
method_verifier.cc | 269 void MethodVerifier::VerifyMethodAndDump(std::ostream& os, uint32_t dex_method_idx, 277 dex_method_idx, method, method_access_flags, true, true); 288 uint32_t dex_method_idx, mirror::ArtMethod* method, 293 dex_method_idx_(dex_method_idx), [all...] |