Home
last modified time | relevance | path

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

12

/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/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/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/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/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/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/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.cc75 …JNIEnv* jni, jthread thread, jmethodID meth, jlocation loc), (jvmti, jni, jthreadContainer{.thread…
76 …jvmti, JNIEnv* jni, jthread thread, jmethodID meth), (jvmti, jni, jthreadContainer{.thread = threa…
77 …v* jni, jthread thread, jmethodID meth, jboolean jb, jvalue jv), (jvmti, jni, jthreadContainer{.th…
78 …Env* jni, jthread thread, jmethodID meth, void* v1, void** v2), (jvmti, jni, jthreadContainer{.thr…
80 … jni, jthread thread, jmethodID meth, jlocation loc, jobject obj), (jvmti, jni, jthreadContainer{.…
97 …tiEnv* jvmti, jmethodID meth, jint i1, const void* cv1, jint i2, const jvmtiAddrLocationMap* alm, …
98 …VENT(COMPILED_METHOD_UNLOAD), (jvmtiEnv* jvmti, jmethodID meth, const void* cv1), (jvmti, meth, cv…
354 jmethodID meth,
561 void LogPrinter::PrintRest(jvmtiEnv* jvmti, JNIEnv* jni, jmethodID meth, Args... args) { in PrintRest() argument
562 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/086-null-super/src/
DMain.java82 Method meth = mDexClass. in findDexClass() local
89 meth.invoke(mDexFile, name, this); in findDexClass()
/art/test/032-concrete-sub/
Dexpected.txt5 meth modifiers=1025
/art/test/1953-pop-frame/
Dpop_frame.cc56 jobject meth, in TestData()
63 target_method(meth != nullptr ? env->FromReflectedMethod(meth) : nullptr), in TestData()
89 jmethodID meth, in cbSingleStep() argument
98 if (meth != data->target_method || loc != data->target_loc) { in cbSingleStep()
347 jobject meth, in SetupTestData() argument
365 meth, in SetupTestData()
380 jobject meth, in SetupTestData() argument
388 env, meth, loc, target_klass, field, setup_meth, pop_offset, std::move(empty)); in SetupTestData()
464 jobject meth, in Java_art_Test1953_setupSuspendSingleStepAt() argument
475 data = SetupTestData(env, meth, loc, nullptr, nullptr, nullptr, 0); in Java_art_Test1953_setupSuspendSingleStepAt()
[all …]
/art/test/128-reg-spill-on-implicit-nullcheck/src/
DMain.java43 public void meth() {field = 1;} in meth() method in TestClass
/art/test/130-hprof/src/
DMain.java222 Method meth; in getDumpHprofDataMethod() local
224 meth = vmdClass.getMethod("dumpHprofData", String.class); in getDumpHprofDataMethod()
230 return meth; in getDumpHprofDataMethod()
/art/test/044-proxy/src/
DBasicTest.java85 Method meth = methods[methods.length -1]; in main() local
86 System.out.println("Decl annos: " + Arrays.deepToString(meth.getDeclaredAnnotations())); in main()
87 Annotation[][] paramAnnos = meth.getParameterAnnotations(); in main()
90 System.out.println("Modifiers: " + meth.getModifiers()); in main()
/art/test/074-gc-thrash/src/
DMain.java79 Method meth; in getDumpHprofDataMethod() local
81 meth = vmdClass.getMethod("dumpHprofData", String.class); in getDumpHprofDataMethod()
87 return meth; in getDumpHprofDataMethod()
/art/test/1955-pop-frame-jit-called/src/
DMain.java52 public static native void ensureMethodJitCompiled(Method meth); in ensureMethodJitCompiled() argument
/art/test/1956-pop-frame-jit-calling/src/
DMain.java52 public static native void ensureMethodJitCompiled(Method meth); in ensureMethodJitCompiled() argument
/art/test/1954-pop-frame-jit/src/
DMain.java59 public static native void ensureMethodJitCompiled(Method meth); in ensureMethodJitCompiled() argument
/art/test/1339-dead-reference-safe/src/
DMain.java62 public static native void ensureMethodJitCompiled(Method meth); in ensureMethodJitCompiled() argument
/art/test/031-class-attributes/src/
DClassAttrs.java131 Method meth; in main() local
132 meth = MemberClass.class.getMethod("foo"); in main()
134 + getSignatureAttribute(meth)); in main()
/art/test/1956-pop-frame-jit-calling/src/art/
DTest1953.java968 public static native void setupSuspendBreakpointFor(Executable meth, long loc, Thread thr);
971 public static native void setupSuspendSingleStepAt(Executable meth, long loc, Thread thr);
977 public static native void setupSuspendMethodEvent(Executable meth, boolean enter, Thread thr);
981 Executable meth, boolean is_catch, Thread thr);

12