Searched defs:target (Results 1 - 25 of 126) sorted by relevance

123456

/art/test/921-hello-failure/src/
H A DCommonClassDefinition.java18 public final Class<?> target; field in class:CommonClassDefinition
22 CommonClassDefinition(Class<?> target, byte[] class_file_bytes, byte[] dex_file_bytes) { argument
23 this.target = target;
/art/tools/dexfuzz/src/dexfuzz/program/
H A DMBranchInsn.java20 * A subclass of the MInsn, that tracks its target instruction.
26 public MInsn target; field in class:MBranchInsn
34 newInsn.target = target;
/art/test/952-invoke-custom/src/
H A DUnrelatedBSM.java25 MethodHandles.Lookup lookup, String name, MethodType methodType, Class<?> target)
27 MethodHandle mh = lookup.findStatic(target, name, methodType);
24 bsm( MethodHandles.Lookup lookup, String name, MethodType methodType, Class<?> target) argument
/art/test/1906-suspend-list-me-first/src/art/
H A DTest1906.java34 public static void waitForSuspension(Thread target) { argument
35 while (!Suspension.isSuspended(target)) {
/art/test/1907-suspend-list-self-twice/src/art/
H A DTest1907.java33 public static void waitForSuspension(Thread target) { argument
34 while (!Suspension.isSuspended(target)) {
/art/test/1923-frame-pop/src/art/
H A DFramePop.java24 public static native void notifyFramePop(Thread target, int depth) throws Exception; argument
/art/test/1924-frame-pop-toggle/src/art/
H A DFramePop.java24 public static native void notifyFramePop(Thread target, int depth) throws Exception; argument
/art/test/1925-self-frame-pop/src/art/
H A DFramePop.java24 public static native void notifyFramePop(Thread target, int depth) throws Exception; argument
/art/test/1926-missed-frame-pop/src/art/
H A DFramePop.java24 public static native void notifyFramePop(Thread target, int depth) throws Exception; argument
/art/test/992-source-data/
H A Dsource_file.cc42 jclass target) {
44 if (JvmtiErrorToException(env, jvmti_env, jvmti_env->GetSourceFileName(target, &file))) {
55 jclass target) {
57 if (JvmtiErrorToException(env, jvmti_env, jvmti_env->GetSourceDebugExtension(target, &ext))) {
40 Java_art_Test992_getSourceFileName(JNIEnv* env, jclass klass ATTRIBUTE_UNUSED, jclass target) argument
53 Java_art_Test992_getSourceDebugExtension(JNIEnv* env, jclass klass ATTRIBUTE_UNUSED, jclass target) argument
/art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
H A DContainsTarget.java22 * Every Format that contains an offset to a target instruction
28 public void setTarget(Instruction insn, long target); argument
H A DFormat10t.java53 public void setTarget(Instruction insn, long target) { argument
54 insn.vregA = target;
H A DFormat20t.java54 public void setTarget(Instruction insn, long target) { argument
55 insn.vregA = target;
H A DFormat21t.java54 public void setTarget(Instruction insn, long target) { argument
55 insn.vregB = target;
/art/build/
H A DAndroid.cpplint.mk53 define declare-art-cpplint-target
65 $(foreach file, $(ART_CPPLINT_SRC), $(eval $(call declare-art-cpplint-target,$(file))))
66 #$(info $(call declare-art-cpplint-target,$(firstword $(ART_CPPLINT_SRC))))
/art/runtime/mirror/
H A Dcall_site.cc27 mirror::CallSite* CallSite::Create(Thread* const self, Handle<MethodHandle> target) { argument
32 cs->SetFieldObject<false>(TargetOffset(), target.Get());
/art/test/1902-suspend/src/art/
H A DTest1902.java45 public static void waitForSuspension(Thread target) { argument
46 while (!Suspension.isSuspended(target)) {
/art/test/1903-suspend-self/src/art/
H A DTest1903.java52 public static void waitForSuspension(Thread target) { argument
53 while (!Suspension.isSuspended(target)) {
/art/test/1904-double-suspend/src/art/
H A DTest1904.java45 public static void waitForSuspension(Thread target) { argument
46 while (!Suspension.isSuspended(target)) {
/art/test/1915-get-set-local-current-thread/src/art/
H A DTest1915.java52 final Method target = Test1915.class.getDeclaredMethod("IntMethod", ThrowRunnable.class);
56 StackTrace.StackFrameData frame = FindStackFrame(target);
65 StackTrace.StackFrameData frame = FindStackFrame(target);
96 private static StackTrace.StackFrameData FindStackFrame(Method target) { argument
98 if (frame.method.equals(target)) {
102 throw new Error("Unable to find stack frame in method " + target);
/art/test/1936-thread-end-events/src/art/
H A DTest1936.java40 private static void setupTracing(Thread target) throws Exception { argument
41 Trace.disableTracing(target);
51 target);
/art/test/1950-unprepared-transform/src/
H A DMain.java56 public static native void setupClassLoadHook(Thread target); argument
57 public static native void clearClassLoadHook(Thread target); argument
/art/test/203-multi-checkpoint/
H A Dmulti_checkpoint.cc32 CHECK_EQ(self, Thread::Current()) << "Not running on target thread!";
66 CHECK_EQ(self, Thread::Current()) << "Not running on target thread!";
81 Thread* target = Thread::FromManagedThread(soa, thr); local
84 if (target->RequestCheckpoint(&gSetupClosure)) {
/art/test/948-change-annotations/src/
H A DMain.java88 public static void doCommonClassRedefinition(Class<?> target, argument
91 Redefinition.doCommonClassRedefinition(target, class_file, dex_file);
/art/test/993-breakpoints/
H A Dbreakpoints.cc42 jobject target,
44 jmethodID method = env->FromReflectedMethod(target);
54 jobject target,
57 jmethodID method = env->FromReflectedMethod(target);
71 jobject target,
74 jmethodID method = env->FromReflectedMethod(target);
88 jobject target,
91 jmethodID method = env->FromReflectedMethod(target);
105 jobject target,
108 jmethodID method = env->FromReflectedMethod(target);
40 Java_art_Test993_constructNative(JNIEnv* env, jclass klass ATTRIBUTE_UNUSED, jobject target, jclass clazz) argument
52 Java_art_Test993_invokeNativeObject(JNIEnv* env, jclass klass ATTRIBUTE_UNUSED, jobject target, jclass clazz, jobject thizz) argument
69 Java_art_Test993_invokeNativeBool(JNIEnv* env, jclass klass ATTRIBUTE_UNUSED, jobject target, jclass clazz, jobject thizz) argument
86 Java_art_Test993_invokeNativeLong(JNIEnv* env, jclass klass ATTRIBUTE_UNUSED, jobject target, jclass clazz, jobject thizz) argument
103 Java_art_Test993_invokeNative(JNIEnv* env, jclass klass ATTRIBUTE_UNUSED, jobject target, jclass clazz, jobject thizz) argument
[all...]

Completed in 680 milliseconds

123456