Home
last modified time | relevance | path

Searched refs:GetSignature (Results 1 – 22 of 22) sorted by relevance

/art/runtime/mirror/
Dclass.cc449 if (method.GetNameView() == name && method.GetSignature() == signature) { in FindInterfaceMethodWithSignature()
461 if (method.GetNameView() == name && method.GetSignature() == signature) { in FindInterfaceMethodWithSignature()
473 method.GetNameView() == name && method.GetSignature() == signature) { in FindInterfaceMethodWithSignature()
547 if (np_method->GetName() == name && np_method->GetSignature() == signature) { in FindClassMethodWithSignature()
560 if (method.GetName() == name && method.GetSignature() == signature) { in FindClassMethodWithSignature()
585 if (method.GetName() == name && method.GetSignature() == signature) { in FindClassMethodWithSignature()
638 if (length == other_length && name == other_name && signature == method.GetSignature()) { in FindClassMethod()
668 if (method.GetName() == name && method.GetSignature() == signature) { in FindClassMethod()
696 if (method.GetName() == name && method.GetSignature() == signature) { in FindClassMethod()
709 if (method.GetName() == name && method.GetSignature() == signature) { in FindConstructor()
[all …]
/art/tools/jvmti-agents/breakpoint-logger/
Dbreakpoint_logger.cc226 const char* GetSignature() const { in GetSignature() function in breakpoint_logger::ScopedMethodInfo
258 << method.GetSignature() << " (source: " in operator <<()
/art/tools/hiddenapi/
Dhiddenapi.cc180 << GetSignature(); in GetApiEntry()
188 GetSignature() == other.GetSignature(); in operator ==()
207 inline std::string GetSignature() const { in GetSignature() function in art::hiddenapi::DexMember
/art/runtime/entrypoints/
Dentrypoint_utils-inl.h466 resolved_method->GetName(), resolved_method->GetSignature()); in FindMethodToCall()
505 resolved_method->GetName(), resolved_method->GetSignature()); in FindMethodToCall()
529 resolved_method->GetName(), resolved_method->GetSignature()); in FindMethodToCall()
/art/test/ti-stress/
Dstress.cc266 const char* GetSignature() const { in GetSignature() function in art::ScopedMethodInfo
350 return os << m.GetDeclaringClassInfo().GetName() << "->" << m.GetName() << m.GetSignature() in operator <<()
541 std::string type(method_info.GetSignature()); in MethodExitHook()
/art/dex2oat/linker/
Dimage_test.h110 origin->GetSignature() == m.GetSignature()) { in FindCopiedMethod()
/art/runtime/
Dart_method-inl.h185 inline const Signature ArtMethod::GetSignature() { in GetSignature() function
Dhidden_api.cc138 type_signature_ = method->GetSignature().ToString(); in MemberSignature()
Dart_method.h584 const Signature GetSignature() REQUIRES_SHARED(Locks::mutator_lock_);
Dart_method.cc833 std::string signature(GetSignature().ToString()); in JniLongName()
Ddebugger.h319 static JDWP::JdwpError GetSignature(JDWP::RefTypeId ref_type_id, std::string* signature)
Dtrace.cc836 method->GetSignature().ToString().c_str(), method->GetDeclaringClassSourceFile()); in GetMethodLine()
Dclass_linker_test.cc254 EXPECT_TRUE(method->GetSignature() != Signature::NoSignature()); in AssertMethod()
Ddebugger.cc1153 JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) { in GetSignature() function in art::Dbg
1640 pReply, m.GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetSignature().ToString()); in OutputDeclaredMethods()
Dclass_linker.cc5049 CHECK_STREQ(np->GetSignature().ToString().c_str(), "(Ljava/lang/reflect/InvocationHandler;)V"); in CheckProxyConstructor()
/art/tools/jvmti-agents/ti-fast/
Dtifast.cc281 const char* GetSignature() const { in GetSignature() function in tifast::__anon034dbc8c0111::ScopedMethodInfo
317 return os << m.GetDeclaringClassInfo().GetName() << "->" << m.GetName() << m.GetSignature() in operator <<()
/art/runtime/jdwp/
Djdwp_handler.cc55 Dbg::GetSignature(ref_type_id, &signature); in DescribeRefTypeId()
520 JdwpError status = Dbg::GetSignature(refTypeId, &signature); in RT_Signature()
/art/openjdkjvmti/
Dti_method.cc322 const art::Signature sig = art_method->GetSignature(); in GetMethodName()
Dti_redefine.cc659 if (m.GetName() == name && m.GetSignature() == sig) { in FindMethod()
/art/runtime/hprof/
Dhprof.cc716 __ AddStringId(LookupStringId(method->GetSignature().ToString())); in WriteStackTraces()
/art/runtime/jni/
Djni_internal.cc636 if (kNative == method.IsNative() && name == method.GetName() && method.GetSignature() == sig) { in FindMethod()
/art/runtime/verifier/
Dmethod_verifier.cc4273 << res_method->GetSignature(); in VerifyInvocationArgs()