Searched defs:dex_method_idx (Results 1 - 7 of 7) sorted by relevance

/art/runtime/entrypoints/quick/
H A Dquick_invoke_entrypoints.cc114 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,
H A Dquick_trampoline_entrypoints.cc453 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/entrypoints/portable/
H A Dportable_trampoline_entrypoints.cc374 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/
H A Dobject_utils.h419 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 !
[all...]
H A Dclass_linker.cc1850 uint32_t dex_method_idx = it.GetMemberIndex(); local
1851 const DexFile::MethodId& method_id = dex_file.GetMethodId(dex_method_idx);
1862 dst->SetDexMethodIndex(dex_method_idx);
/art/oatdump/
H A Doatdump.cc307 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;
304 DumpOatMethod(std::ostream& os, const DexFile::ClassDef& class_def, uint32_t class_method_index, const OatFile::OatMethod& oat_method, const DexFile& dex_file, uint32_t dex_method_idx, const DexFile::CodeItem* code_item, uint32_t method_access_flags) argument
554 DumpVRegsAtDexPc(std::ostream& os, const OatFile::OatMethod& oat_method, uint32_t dex_method_idx, const DexFile* dex_file, const DexFile::ClassDef& class_def, const DexFile::CodeItem* code_item, uint32_t method_access_flags, uint32_t dex_pc) argument
616 DumpVerifier(std::ostream& os, uint32_t dex_method_idx, const DexFile* dex_file, const DexFile::ClassDef& class_def, const DexFile::CodeItem* code_item, uint32_t method_access_flags) argument
629 DumpCode(std::ostream& os, const OatFile::OatMethod& oat_method, uint32_t dex_method_idx, const DexFile* dex_file, const DexFile::ClassDef& class_def, const DexFile::CodeItem* code_item, uint32_t method_access_flags) argument
[all...]
/art/runtime/verifier/
H A Dmethod_verifier.cc269 void MethodVerifier::VerifyMethodAndDump(std::ostream& os, uint32_t dex_method_idx, argument
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),
2891 mirror::ArtMethod* MethodVerifier::ResolveMethodAndCheckAccess(uint32_t dex_method_idx, argument
2893 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx);
2906 mirror::ArtMethod* res_method = dex_cache_->GetResolvedMethod(dex_method_idx);
2919 dex_cache_->SetResolvedMethod(dex_method_idx, res_method);
284 MethodVerifier(const DexFile* dex_file, mirror::DexCache* dex_cache, mirror::ClassLoader* class_loader, const DexFile::ClassDef* class_def, const DexFile::CodeItem* code_item, uint32_t dex_method_idx, mirror::ArtMethod* method, uint32_t method_access_flags, bool can_load_classes, bool allow_soft_failures) argument

Completed in 452 milliseconds