HomeSort by relevance Sort by last modified time
    Searched refs:dex_method_idx (Results 1 - 10 of 10) sorted by null

  /art/runtime/
method_helper.cc 31 uint32_t dex_method_idx = method->GetDexMethodIndex(); local
32 const DexFile::MethodId& method_id = dex_file->GetMethodId(dex_method_idx);
110 const uint32_t dex_method_idx = method->GetDexMethodIndex(); local
111 const DexFile::MethodId& mid = dexfile->GetMethodId(dex_method_idx);
116 return dex_method_idx;
class_linker.cc 2883 uint32_t dex_method_idx = it.GetMemberIndex(); local
    [all...]
  /art/runtime/mirror/
art_method-inl.h 418 uint32_t dex_method_idx = method->GetDexMethodIndex(); local
419 if (UNLIKELY(dex_method_idx == DexFile::kDexNoIndex)) {
423 return dex_file->GetMethodDeclaringClassDescriptor(dex_file->GetMethodId(dex_method_idx));
434 uint32_t dex_method_idx = method->GetDexMethodIndex(); local
435 if (dex_method_idx != DexFile::kDexNoIndex) {
437 return dex_file->GetMethodSignature(dex_file->GetMethodId(dex_method_idx));
444 uint32_t dex_method_idx = method->GetDexMethodIndex(); local
445 if (LIKELY(dex_method_idx != DexFile::kDexNoIndex)) {
447 return dex_file->GetMethodName(dex_file->GetMethodId(dex_method_idx));
class.cc 397 ArtMethod* Class::FindInterfaceMethod(const DexCache* dex_cache, uint32_t dex_method_idx) {
399 ArtMethod* method = FindDeclaredVirtualMethod(dex_cache, dex_method_idx);
407 method = iftable->GetInterface(i)->FindDeclaredVirtualMethod(dex_cache, dex_method_idx);
435 ArtMethod* Class::FindDeclaredDirectMethod(const DexCache* dex_cache, uint32_t dex_method_idx) {
439 if (method->GetDexMethodIndex() == dex_method_idx) {
467 ArtMethod* Class::FindDirectMethod(const DexCache* dex_cache, uint32_t dex_method_idx) {
469 ArtMethod* method = klass->FindDeclaredDirectMethod(dex_cache, dex_method_idx);
497 ArtMethod* Class::FindDeclaredVirtualMethod(const DexCache* dex_cache, uint32_t dex_method_idx) {
501 if (method->GetDexMethodIndex() == dex_method_idx &&
532 ArtMethod* Class::FindVirtualMethod(const DexCache* dex_cache, uint32_t dex_method_idx) {
    [all...]
class.h 760 ArtMethod* FindInterfaceMethod(const DexCache* dex_cache, uint32_t dex_method_idx)
769 ArtMethod* FindDeclaredDirectMethod(const DexCache* dex_cache, uint32_t dex_method_idx)
    [all...]
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc 716 uint32_t dex_method_idx; local
773 dex_method_idx = (is_range) ? instr->VRegB_3rc() : instr->VRegB_35c();
1915 uint32_t dex_method_idx; local
    [all...]
  /art/runtime/entrypoints/portable/
portable_trampoline_entrypoints.cc 381 uint32_t dex_method_idx = (is_range) ? instr->VRegB_3rc() : instr->VRegB_35c(); local
382 called = linker->ResolveMethod(Thread::Current(), dex_method_idx, &caller, invoke_type);
  /art/oatdump/
oatdump.cc 450 uint32_t dex_method_idx, const DexFile::CodeItem* code_item,
453 os << StringPrintf("%d: %s (dex_method_idx=%d)\n",
454 class_method_index, PrettyMethod(dex_method_idx, dex_file, true).c_str(),
455 dex_method_idx);
468 verifier.reset(DumpVerifier(*indent2_os, dex_method_idx, &dex_file, class_def, code_item,
    [all...]
  /art/runtime/verifier/
method_verifier.cc 306 MethodVerifier* MethodVerifier::VerifyMethodAndDump(std::ostream& os, uint32_t dex_method_idx,
315 code_item, dex_method_idx, method,
328 const DexFile::CodeItem* code_item, uint32_t dex_method_idx,
334 dex_method_idx_(dex_method_idx),
    [all...]
  /art/compiler/driver/
compiler_driver.cc 1230 uint32_t dex_method_idx = mh.FindDexMethodIndexInOtherDexFile( local
    [all...]

Completed in 262 milliseconds