Home
last modified time | relevance | path

Searched refs:meth (Results 1 – 25 of 41) sorted by relevance

12

/art/test/1968-force-early-return/src/art/
DSuspendEvents.java31 public static native void setupSuspendBreakpointFor(Executable meth, long loc, Thread thr); in setupSuspendBreakpointFor() argument
34 public static native void setupSuspendSingleStepAt(Executable meth, long loc, Thread thr); in setupSuspendSingleStepAt() argument
40 public static native void setupSuspendMethodEvent(Executable meth, boolean enter, Thread thr); in setupSuspendMethodEvent() argument
44 Executable meth, boolean is_catch, Thread thr); in setupSuspendExceptionEvent() argument
/art/test/1954-pop-frame-jit/src/art/
DSuspendEvents.java31 public static native void setupSuspendBreakpointFor(Executable meth, long loc, Thread thr); in setupSuspendBreakpointFor() argument
34 public static native void setupSuspendSingleStepAt(Executable meth, long loc, Thread thr); in setupSuspendSingleStepAt() argument
40 public static native void setupSuspendMethodEvent(Executable meth, boolean enter, Thread thr); in setupSuspendMethodEvent() argument
44 Executable meth, boolean is_catch, Thread thr); in setupSuspendExceptionEvent() argument
/art/test/1969-force-early-return-void/src/art/
DSuspendEvents.java31 public static native void setupSuspendBreakpointFor(Executable meth, long loc, Thread thr); in setupSuspendBreakpointFor() argument
34 public static native void setupSuspendSingleStepAt(Executable meth, long loc, Thread thr); in setupSuspendSingleStepAt() argument
40 public static native void setupSuspendMethodEvent(Executable meth, boolean enter, Thread thr); in setupSuspendMethodEvent() argument
44 Executable meth, boolean is_catch, Thread thr); in setupSuspendExceptionEvent() argument
/art/test/1955-pop-frame-jit-called/src/art/
DSuspendEvents.java31 public static native void setupSuspendBreakpointFor(Executable meth, long loc, Thread thr); in setupSuspendBreakpointFor() argument
34 public static native void setupSuspendSingleStepAt(Executable meth, long loc, Thread thr); in setupSuspendSingleStepAt() argument
40 public static native void setupSuspendMethodEvent(Executable meth, boolean enter, Thread thr); in setupSuspendMethodEvent() argument
44 Executable meth, boolean is_catch, Thread thr); in setupSuspendExceptionEvent() argument
/art/test/jvmti-common/
DSuspendEvents.java31 public static native void setupSuspendBreakpointFor(Executable meth, long loc, Thread thr); in setupSuspendBreakpointFor() argument
34 public static native void setupSuspendSingleStepAt(Executable meth, long loc, Thread thr); in setupSuspendSingleStepAt() argument
40 public static native void setupSuspendMethodEvent(Executable meth, boolean enter, Thread thr); in setupSuspendMethodEvent() argument
44 Executable meth, boolean is_catch, Thread thr); in setupSuspendExceptionEvent() argument
/art/test/1953-pop-frame/src/art/
DSuspendEvents.java31 public static native void setupSuspendBreakpointFor(Executable meth, long loc, Thread thr); in setupSuspendBreakpointFor() argument
34 public static native void setupSuspendSingleStepAt(Executable meth, long loc, Thread thr); in setupSuspendSingleStepAt() argument
40 public static native void setupSuspendMethodEvent(Executable meth, boolean enter, Thread thr); in setupSuspendMethodEvent() argument
44 Executable meth, boolean is_catch, Thread thr); in setupSuspendExceptionEvent() argument
/art/test/1956-pop-frame-jit-calling/src/art/
DSuspendEvents.java31 public static native void setupSuspendBreakpointFor(Executable meth, long loc, Thread thr); in setupSuspendBreakpointFor() argument
34 public static native void setupSuspendSingleStepAt(Executable meth, long loc, Thread thr); in setupSuspendSingleStepAt() argument
40 public static native void setupSuspendMethodEvent(Executable meth, boolean enter, Thread thr); in setupSuspendMethodEvent() argument
44 Executable meth, boolean is_catch, Thread thr); in setupSuspendExceptionEvent() argument
/art/test/1971-multi-force-early-return/src/art/
DSuspendEvents.java31 public static native void setupSuspendBreakpointFor(Executable meth, long loc, Thread thr); in setupSuspendBreakpointFor() argument
34 public static native void setupSuspendSingleStepAt(Executable meth, long loc, Thread thr); in setupSuspendSingleStepAt() argument
40 public static native void setupSuspendMethodEvent(Executable meth, boolean enter, Thread thr); in setupSuspendMethodEvent() argument
44 Executable meth, boolean is_catch, Thread thr); in setupSuspendExceptionEvent() argument
/art/test/1970-force-early-return-long/src/art/
DSuspendEvents.java31 public static native void setupSuspendBreakpointFor(Executable meth, long loc, Thread thr); in setupSuspendBreakpointFor() argument
34 public static native void setupSuspendSingleStepAt(Executable meth, long loc, Thread thr); in setupSuspendSingleStepAt() argument
40 public static native void setupSuspendMethodEvent(Executable meth, boolean enter, Thread thr); in setupSuspendMethodEvent() argument
44 Executable meth, boolean is_catch, Thread thr); in setupSuspendExceptionEvent() argument
/art/test/085-old-style-inner-class/src/
DMain.java41 private static String nameOf(Method meth) { in nameOf() argument
42 return (meth == null) ? "(null)" : meth.toString(); in nameOf()
/art/test/032-concrete-sub/src/
DConcreteSub.java41 Method meth; in main() local
46 meth = absClass.getMethod("redefineMe"); in main()
51 System.out.println("meth modifiers=" + meth.getModifiers()); in main()
/art/test/075-verification-error/
Dexpected.txt10 Got expected IllegalAccessError (meth-class)
12 Got expected IllegalAccessError (meth-meth)
/art/test/179-nonvirtual-jni/
Dnonvirtual-call.cc27 jmethodID meth = env->GetMethodID(lookup, "sayHi", "()V"); in Java_Main_callSayHiMethodNonvirtualWith() local
28 env->CallNonvirtualVoidMethod(recv, caller, meth); in Java_Main_callSayHiMethodNonvirtualWith()
/art/test/046-reflect/src/
DMain.java34 void printMethodInfo(Method meth) { in printMethodInfo() argument
38 System.out.println("Method name is " + meth.getName()); in printMethodInfo()
40 + meth.getDeclaringClass().getName()); in printMethodInfo()
41 params = meth.getParameterTypes(); in printMethodInfo()
44 exceptions = meth.getExceptionTypes(); in printMethodInfo()
47 System.out.println(" Return type is " + meth.getReturnType().getName()); in printMethodInfo()
49 + Integer.toHexString(meth.getModifiers())); in printMethodInfo()
85 Method meth; in checkAccess() local
87 meth = target.getMethod("publicMethod"); in checkAccess()
88 meth.invoke(instance); in checkAccess()
[all …]
/art/test/2035-structural-native-method/
Dstructural-native.cc40 JNINativeMethod meth{"getValue", "()J", reinterpret_cast<void*>(TransformNativeMethod)}; in Java_art_Test2035_LinkClassMethods() local
41 env->RegisterNatives(target, &meth, 1); in Java_art_Test2035_LinkClassMethods()
/art/test/087-gc-after-link/src/
DMain.java85 Method meth = dexClass.getMethod("loadClass", String.class, ClassLoader.class); in findDexClass() local
91 meth.invoke(dexFile, name, this); in findDexClass()
96 Method meth = dexClass.getMethod("close"); in findDexClass() local
97 meth.invoke(dexFile); in findDexClass()
/art/test/2009-structural-local-ref/
Dexpected.txt6 Result was meth
8 Result was static-meth
/art/test/068-classloader/src/
DFancyLoader.java111 Method meth; in findClassDalvik() local
114 meth = mDexClass.getMethod("loadClass", String.class, ClassLoader.class); in findClassDalvik()
120 meth.invoke(mDexFile, name, this); in findClassDalvik()
/art/test/647-jni-get-field-id/src/
DDefiningLoader.java118 Method meth; in findClassDalvik() local
121 meth = mDexClass.getMethod("loadClass", String.class, ClassLoader.class); in findClassDalvik()
127 meth.invoke(mDexFile, name, this); in findClassDalvik()
/art/test/626-const-class-linking/src/
DDefiningLoader.java118 Method meth; in findClassDalvik() local
121 meth = mDexClass.getMethod("loadClass", String.class, ClassLoader.class); in findClassDalvik()
127 meth.invoke(mDexFile, name, this); in findClassDalvik()
/art/dexlist/
Ddexlist.cc230 char* meth = strrchr(gOptions.argCopy, '.'); in dexlistDriver() local
231 if (meth == nullptr) { in dexlistDriver()
235 *meth = '\0'; in dexlistDriver()
237 gOptions.methodToFind = meth + 1; in dexlistDriver()
/art/test/utils/python/
Dgenerate_java_main.py253 for meth in flatten_class_methods(dat.classes, clazz):
254 i.add_func(Func(meth, clazz.name, 'virtual'))
256 for meth in flatten_interface_methods(dat, iface):
257 i.add_func(Func(meth, clazz.name, 'virtual'))
258 i.add_func(Func(meth, iface.name, 'interface'))
/art/tools/jvmti-agents/ti-fast/
Dtifast.cc84 … jni, jthread thread, jmethodID meth, jlocation loc, jobject obj), (jvmti, jni, jthreadContainer{.…
85 …JNIEnv* jni, jthread thread, jmethodID meth, jlocation loc), (jvmti, jni, jthreadContainer{.thread…
86 …jvmti, JNIEnv* jni, jthread thread, jmethodID meth), (jvmti, jni, jthreadContainer{.thread = threa…
87 …v* jni, jthread thread, jmethodID meth, jboolean jb, jvalue jv), (jvmti, jni, jthreadContainer{.th…
88 …Env* jni, jthread thread, jmethodID meth, void* v1, void** v2), (jvmti, jni, jthreadContainer{.thr…
89 …tiEnv* jvmti, jmethodID meth, jint i1, const void* cv1, jint i2, const jvmtiAddrLocationMap* alm, …
90 …VENT(COMPILED_METHOD_UNLOAD), (jvmtiEnv* jvmti, jmethodID meth, const void* cv1), (jvmti, meth, cv…
351 jmethodID meth,
558 void LogPrinter::PrintRest(jvmtiEnv* jvmti, JNIEnv* jni, jmethodID meth, Args... args) { in PrintRest() argument
559 ScopedMethodInfo smi(jvmti, jni, meth); in PrintRest()
/art/test/005-annotations/src/android/test/anno/
DTestAnnotations.java138 Method meth; in testArrayProblem() local
143 meth = TestAnnotations.class.getMethod("getFocusType"); in testArrayProblem()
147 property = meth.getAnnotation(ExportedProperty.class); in testArrayProblem()
155 meth.isAnnotationPresent(ExportedProperty.class)); in testArrayProblem()
157 meth.isAnnotationPresent(AnnoSimpleType.class)); in testArrayProblem()
/art/test/032-concrete-sub/
Dexpected.txt5 meth modifiers=1025

12