Home
last modified time | relevance | path

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

/aosp12/art/tools/jvmti-agents/simple-profile/
H A 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…
H A Dsimple_profile.cc43 std::string_view method_descriptor; member
49 << "\",\"method_descriptor\":\"" << dd.method_descriptor << "\",\"count\":" << dd.count in operator <<()
339 .method_descriptor = smi.GetSignature(), in DoDump()
/aosp12/art/runtime/mirror/
H A Dvar_handle_test.cc168 static ObjPtr<MethodType> MethodTypeOf(const std::string& method_descriptor) { in MethodTypeOf() argument
171 auto it = method_descriptor.cbegin(); in MethodTypeOf()
173 LOG(FATAL) << "Bad descriptor: " << method_descriptor; in MethodTypeOf()
178 for (; it != method_descriptor.cend() && !returnValueSeen; ++it) { in MethodTypeOf()
181 descriptors.push_back(std::string(++it, method_descriptor.cend())); in MethodTypeOf()
209 LOG(FATAL) << "Bad descriptor: " << method_descriptor; in MethodTypeOf()