Lines Matching defs:method_idx

25 mirror::ArtMethod* FindMethodHelper(uint32_t method_idx, mirror::Object* this_object,
27 mirror::ArtMethod* method = FindMethodFast(method_idx, this_object, caller_method,
32 method = FindMethodFromCode<type, access_check>(method_idx, &this_object, &caller_method,
57 mirror::ArtMethod* FindMethodHelper<_type, _access_check>(uint32_t method_idx, \
74 extern "C" mirror::Object* art_portable_find_static_method_from_code_with_access_check(uint32_t method_idx,
79 return FindMethodHelper<kStatic, true>(method_idx, this_object, referrer, thread);
82 extern "C" mirror::Object* art_portable_find_direct_method_from_code_with_access_check(uint32_t method_idx,
87 return FindMethodHelper<kDirect, true>(method_idx, this_object, referrer, thread);
90 extern "C" mirror::Object* art_portable_find_virtual_method_from_code_with_access_check(uint32_t method_idx,
95 return FindMethodHelper<kVirtual, true>(method_idx, this_object, referrer, thread);
98 extern "C" mirror::Object* art_portable_find_super_method_from_code_with_access_check(uint32_t method_idx,
103 return FindMethodHelper<kSuper, true>(method_idx, this_object, referrer, thread);
106 extern "C" mirror::Object* art_portable_find_interface_method_from_code_with_access_check(uint32_t method_idx,
111 return FindMethodHelper<kInterface, true>(method_idx, this_object, referrer, thread);
114 extern "C" mirror::Object* art_portable_find_interface_method_from_code(uint32_t method_idx,
119 return FindMethodHelper<kInterface, false>(method_idx, this_object, referrer, thread);