/art/runtime/mirror/ |
D | stack_trace_element-inl.h | 31 inline ObjPtr<String> StackTraceElement::GetMethodName() { in GetMethodName() function
|
D | stack_trace_element.h | 34 ObjPtr<String> GetMethodName() REQUIRES_SHARED(Locks::mutator_lock_);
|
D | throwable.cc | 141 ObjPtr<String> method_name = ste->GetMethodName(); in Dump()
|
/art/libdexfile/dex/ |
D | method_reference.h | 61 int name_diff = strcmp(mr1.dex_file->GetMethodName(mid1), mr2.dex_file->GetMethodName(mid2)); in SlowCompare()
|
D | dex_file-inl.h | 123 inline const char* DexFile::GetMethodName(const dex::MethodId& method_id) const { in GetMethodName() function 127 inline const char* DexFile::GetMethodName(const dex::MethodId& method_id, uint32_t* utf_length) in GetMethodName() function 132 inline const char* DexFile::GetMethodName(uint32_t idx, uint32_t* utf_length) const { in GetMethodName() function
|
D | dex_file_tracking_registrar.cc | 208 const char * methodid_name = dex_file_->GetMethodName(methodid_item); in SetCodeItemRegistration()
|
D | dex_file.h | 385 const char* GetMethodName(const dex::MethodId& method_id) const; 386 const char* GetMethodName(const dex::MethodId& method_id, uint32_t* utf_length) const; 387 const char* GetMethodName(uint32_t idx, uint32_t* utf_length) const;
|
/art/test/910-methods/ |
D | methods.cc | 40 jvmtiError result = jvmti_env->GetMethodName(id, &name, &sig, &gen); in Java_art_Test910_getMethodName() 68 jvmtiError result2 = jvmti_env->GetMethodName(id, nullptr, nullptr, nullptr); in Java_art_Test910_getMethodName()
|
/art/tools/veridex/ |
D | resolver.cc | 53 return strcmp(method_name, dex_file.GetMethodName(method_id)) == 0 && in HasSameNameAndSignature() 61 return strcmp(method_name, dex_file.GetMethodName(method_id)) == 0 && in HasSameNameAndSignature() 269 dex_file_.GetMethodName(method_id), in GetMethod()
|
D | hidden_api.cc | 83 << dex_file.GetMethodName(method_id) in GetApiMethodName()
|
/art/runtime/ |
D | imtable-inl.h | 55 *name_hash = ComputeModifiedUtf8Hash(dex_file->GetMethodName(method_id)); in GetImtHashComponents()
|
D | art_method-inl.h | 200 return dex_file->GetMethodName(dex_file->GetMethodId(dex_method_idx)); in GetName() 211 const char* name = dex_file->GetMethodName(dex_file->GetMethodId(dex_method_idx), &length); in GetNameView()
|
D | art_method.cc | 239 DCHECK_STREQ(dexfile->GetMethodName(mid), other_dexfile.GetMethodName(name_and_sig_mid)); in FindDexMethodIndexInOtherDexFile()
|
D | hidden_api.cc | 155 member_name_ = dex_file.GetMethodName(method_id); in MemberSignature()
|
/art/test/ti-agent/ |
D | common_helper.cc | 107 if (JvmtiErrorToException(env, jvmtienv, jvmtienv->GetMethodName(m, &fname, &fsig, &fgen))) { in GetJavaValue()
|
D | jni_binder.cc | 85 jvmtiError name_result = jvmti_env->GetMethodName(method, &name_cstr, &sig_cstr, nullptr); in BindMethod()
|
/art/compiler/ |
D | exception_test.cc | 228 EXPECT_STREQ("g", trace_array->Get(0)->GetMethodName()->ToModifiedUtf8().c_str()); in TEST_F() 236 EXPECT_STREQ("f", trace_array->Get(1)->GetMethodName()->ToModifiedUtf8().c_str()); in TEST_F()
|
/art/openjdkjvmti/ |
D | ti_method.h | 57 static jvmtiError GetMethodName(jvmtiEnv* env,
|
/art/compiler/optimizing/ |
D | optimizing_compiler.cc | 116 timing_logger_(timing_logger_enabled_ ? GetMethodName() : "", true, true), in PassObserver() 125 if (!IsVerboseMethod(compiler_options, GetMethodName())) { in PassObserver() 129 visualizer_.PrintHeader(GetMethodName()); in PassObserver() 137 LOG(INFO) << "TIMINGS " << GetMethodName(); in ~PassObserver() 152 const char* GetMethodName() { in GetMethodName() function in art::PassObserver 875 VLOG(compiler) << "Building " << pass_observer.GetMethodName(); in TryCompile() 995 VLOG(compiler) << "Building intrinsic graph " << pass_observer.GetMethodName(); in TryCompileIntrinsic()
|
/art/dex2oat/driver/ |
D | compiler_driver_test.cc | 147 << " " << dex.GetMethodName(dex.GetMethodId(i)); in TEST_F() 150 << dex.GetMethodName(dex.GetMethodId(i)); in TEST_F()
|
/art/test/911-get-stack-trace/ |
D | stack_trace.cc | 66 jvmtiError result2 = jvmti_env->GetMethodName(frames[method_index].method, &name, &sig, &gen); in TranslateJvmtiFrameInfoArray()
|
/art/tools/jvmti-agents/breakpoint-logger/ |
D | breakpoint_logger.cc | 211 (jvmti_env_->GetMethodName(method_, &name_, &signature_, &generic_) == JVMTI_ERROR_NONE); in Init()
|
/art/runtime/verifier/ |
D | verifier_deps.cc | 892 << dex_file.GetMethodName(method_id) in Dump() 1080 + dex_file.GetMethodName(method_id) in GetMethodDescription() 1095 const char* name = dex_file.GetMethodName(method_id); in VerifyMethods()
|
/art/runtime/jdwp/ |
D | jdwp_main.cc | 756 << Dbg::GetClassName(rhs.class_id) << "." << Dbg::GetMethodName(rhs.method_id) in operator <<()
|
/art/test/913-heaps/ |
D | heaps.cc | 311 jvmti_env->GetMethodName(info_.jni_local.method, &name, nullptr, nullptr); in Java_art_Test913_followReferences() 357 jvmti_env->GetMethodName(info_.stack_local.method, &name, nullptr, nullptr); in Java_art_Test913_followReferences()
|