Home
last modified time | relevance | path

Searched refs:GetMethodName (Results 1 – 17 of 17) sorted by relevance

/art/runtime/
Dmethod_helper.cc80 const char* mid_name = dexfile->GetMethodName(mid); in FindDexMethodIndexInOtherDexFile()
113 DCHECK_STREQ(dexfile->GetMethodName(mid), other_dexfile.GetMethodName(name_and_sig_mid)); in FindDexMethodIndexInOtherDexFile()
Dexception_test.cc230 EXPECT_STREQ("g", trace_array->Get(0)->GetMethodName()->ToModifiedUtf8().c_str()); in TEST_F()
237 EXPECT_STREQ("f", trace_array->Get(1)->GetMethodName()->ToModifiedUtf8().c_str()); in TEST_F()
Ddebugger.h364 static std::string GetMethodName(JDWP::MethodId method_id)
Ddex_file.h619 const char* GetMethodName(const MethodId& method_id) const { in GetMethodName() function
Dutils.cc398 result += dex_file.GetMethodName(method_id); in PrettyMethod()
Dclass_linker.cc4554 os << " " << dex_file.GetMethodName(id) << dex_file.GetMethodSignature(id).ToString() << "\n"; in DumpClass()
4560 os << " " << dex_file.GetMethodName(id) << dex_file.GetMethodSignature(id).ToString() << "\n"; in DumpClass()
Ddebugger.cc1507 std::string Dbg::GetMethodName(JDWP::MethodId method_id) in GetMethodName() function in art::Dbg
/art/compiler/driver/
Dcompiler_driver_test.cc127 << " " << dex->GetMethodName(dex->GetMethodId(i)); in TEST_F()
131 << " " << dex->GetMethodName(dex->GetMethodId(i)); in TEST_F()
136 << " " << dex->GetMethodName(dex->GetMethodId(i)); in TEST_F()
/art/runtime/mirror/
Dstack_trace_element.h38 String* GetMethodName() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { in GetMethodName() function
Dthrowable.cc112 ste->GetMethodName()->ToModifiedUtf8().c_str(), in Dump()
Dart_method-inl.h447 return dex_file->GetMethodName(dex_file->GetMethodId(dex_method_idx)); in GetName()
/art/runtime/jdwp/
Djdwp_main.cc603 << Dbg::GetClassName(rhs.class_id) << "." << Dbg::GetMethodName(rhs.method_id) in operator <<()
Djdwp_handler.cc45 return StringPrintf("%#x (%s)", method_id, Dbg::GetMethodName(method_id).c_str()); in DescribeMethod()
106 Dbg::GetMethodName(method_id).c_str()); in FinishInvoke()
/art/runtime/quick/
Dinline_method_analyser.cc140 const char* method_name = ref.dex_file->GetMethodName(method_id); in IsSyntheticAccessor()
/art/runtime/verifier/
Dmethod_verifier.cc3047 append += dex_file_->GetMethodName(method_id); in ResolveMethodAndCheckAccess()
3058 const char* name = dex_file_->GetMethodName(method_id); in ResolveMethodAndCheckAccess()
3176 if (strcmp(dex_file_->GetMethodName(dex_file_->GetMethodId(method_idx)), "<init>") != 0) { in VerifyInvocationArgsFromIterator()
/art/compiler/dex/quick/
Dcodegen_util.cc346 const char* name = cu_->dex_file->GetMethodName(method_id); in CodegenDump()
/art/compiler/jni/
Djni_compiler_test.cc803 EXPECT_STREQ("fooI", ste->GetMethodName()->ToModifiedUtf8().c_str()); in JNI_TEST()