Home
last modified time | relevance | path

Searched refs:method_descriptor (Results 1 – 3 of 3) sorted by relevance

/art/tools/jvmti-agents/simple-profile/
DREADME.md56 …{"class_name":"Ljava/util/HashMap$KeySet;","method_name":"iterator","method_descriptor":"()Ljava/u…
57 …{"class_name":"Ljava/util/HashMap$KeyIterator;","method_name":"<init>","method_descriptor":"(Ljava…
58 …{"class_name":"Ljava/util/HashMap$HashIterator;","method_name":"<init>","method_descriptor":"(Ljav…
59 …{"class_name":"Ljava/lang/String;","method_name":"equals","method_descriptor":"(Ljava/lang/Object;…
60 …a/util/Collections$UnmodifiableCollection$1;","method_name":"next","method_descriptor":"()Ljava/la…
61 …{"class_name":"Ljava/util/HashMap$KeyIterator;","method_name":"next","method_descriptor":"()Ljava/…
62 …{"class_name":"Lsun/misc/Cleaner;","method_name":"add","method_descriptor":"(Lsun/misc/Cleaner;)Ls…
Dsimple_profile.cc44 std::string_view method_descriptor; member
50 << "\",\"method_descriptor\":\"" << dd.method_descriptor << "\",\"count\":" << dd.count in operator <<()
340 .method_descriptor = smi.GetSignature(), in DoDump()
/art/runtime/mirror/
Dvar_handle_test.cc172 static ObjPtr<MethodType> MethodTypeOf(const std::string& method_descriptor) { in MethodTypeOf() argument
175 auto it = method_descriptor.cbegin(); in MethodTypeOf()
177 LOG(FATAL) << "Bad descriptor: " << method_descriptor; in MethodTypeOf()
182 for (; it != method_descriptor.cend() && !returnValueSeen; ++it) { in MethodTypeOf()
185 descriptors.push_back(std::string(++it, method_descriptor.cend())); in MethodTypeOf()
213 LOG(FATAL) << "Bad descriptor: " << method_descriptor; in MethodTypeOf()