/art/runtime/ |
dex_method_iterator_test.cc | 37 uint32_t method_idx = it.GetMemberIndex(); local 39 LG << invoke_type << " " << PrettyMethod(method_idx, dex_file);
|
dex_instruction.cc | 557 uint32_t method_idx = VRegB_35c(); local 564 os << "}, " << PrettyMethod(method_idx, *file) << " // method@" << method_idx; 570 uint32_t method_idx = VRegB_35c(); local 577 os << "}, // vtable@" << method_idx; local 595 uint32_t method_idx = VRegB_3rc(); local 597 << PrettyMethod(method_idx, *file) << " // method@" << method_idx; 602 uint32_t method_idx = VRegB_3rc(); local 604 << "// vtable@" << method_idx; [all...] |
class_linker.cc | 2804 uint32_t method_idx = proxy_method->GetDexMethodIndex(); local [all...] |
/art/compiler/dex/ |
compiler_ir.h | 52 method_idx(0), 81 uint32_t method_idx; // compiling method's index into method_ids of DexFile. member in struct:art::CompilationUnit
|
dex_to_dex_compiler.cc | 242 uint32_t method_idx = is_range ? inst->VRegB_3rc() : inst->VRegB_35c(); local 243 MethodReference target_method(&GetDexFile(), method_idx); local 257 << "(" << PrettyMethod(method_idx, GetDexFile(), true) << ")" 259 << " by replacing method index " << method_idx 280 uint16_t class_def_idx, uint32_t method_idx, jobject class_loader, 285 dex_file, code_item, class_def_idx, method_idx, access_flags);
|
/art/compiler/jni/portable/ |
jni_compiler.cc | 72 uint32_t method_idx = dex_compilation_unit_->GetDexMethodIndex(); local 74 MangleForJni(PrettyMethod(method_idx, *dex_file)).c_str())); 280 ::llvm::FunctionType* JniCompiler::GetFunctionType(uint32_t method_idx,
|
/art/compiler/ |
elf_writer_mclinker.cc | 243 uint32_t method_idx = it.GetMemberIndex(); local 245 compiler_driver_->GetCompiledMethod(MethodReference(&dex_file, method_idx)); 354 uint32_t method_idx = it.GetMemberIndex(); local 362 method = linker->ResolveMethod(dex_file, method_idx, dex_cache, NULL, NULL, invoke_type); 366 compiler_driver_->GetCompiledMethod(MethodReference(&dex_file, method_idx));
|
/dalvik/vm/reflect/ |
Reflect.cpp | 397 int slot, method_idx; local 429 method_idx = dvmGetMethodIdx(meth); 433 consObj, &unused, meth->clazz, params, exceptions, slot, method_idx); local 537 int slot, method_idx; local 582 method_idx = dvmGetMethodIdx(meth); 587 nameObj, slot, method_idx); local [all...] |
/art/runtime/interpreter/ |
interpreter.cc | 427 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); local 430 ArtMethod* method = FindMethodFromCode(method_idx, receiver, shadow_frame.GetMethod(), self, [all...] |
/art/compiler/driver/ |
compiler_driver.cc | 297 uint32_t method_idx, 305 uint32_t method_idx, 314 uint32_t method_idx, 323 uint32_t method_idx, 328 uint32_t access_flags, uint32_t method_idx, 332 uint32_t access_flags, uint32_t method_idx, 559 uint32_t method_idx = method->GetDexMethodIndex(); local 570 class_def_idx, method_idx, jclass_loader, *dex_file, dex_to_dex_compilation_level); 2262 uint32_t method_idx = it.GetMemberIndex(); local 2278 uint32_t method_idx = it.GetMemberIndex(); local [all...] |
/art/runtime/verifier/ |
method_verifier.cc | 135 uint32_t method_idx = it.GetMemberIndex(); local 136 if (method_idx == previous_direct_method_idx) { 137 // smali can create dex files with two encoded_methods sharing the same method_idx 142 previous_direct_method_idx = method_idx; 145 linker->ResolveMethod(*dex_file, method_idx, dex_cache, class_loader, NULL, type); 151 MethodVerifier::FailureKind result = VerifyMethod(method_idx, 169 *error += PrettyMethod(method_idx, *dex_file); 177 uint32_t method_idx = it.GetMemberIndex(); local 178 if (method_idx == previous_virtual_method_idx) { 179 // smali can create dex files with two encoded_methods sharing the same method_idx 2136 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); local 2160 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); local 2228 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); local 2285 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); local 2992 const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); local [all...] |