Searched refs:proxy (Results 1 - 15 of 15) sorted by relevance

/art/test/044-proxy/src/
H A DNarrowingTest.java32 I2 proxy = (I2) Proxy.newProxyInstance(NarrowingTest.class.getClassLoader(),
37 public Object invoke(Object proxy, Method method,
48 Main.registerProxyClassName(proxy.getClass().getCanonicalName());
50 Method[] methods = proxy.getClass().getDeclaredMethods();
54 System.out.println("Invoking foo using I2 type: " + proxy.foo());
56 I1 proxyAsParent = proxy;
60 proxy.foo();
H A DBasicTest.java34 Object proxy = createProxy(proxyMe);
36 if (!Proxy.isProxyClass(proxy.getClass()))
37 System.err.println("not a proxy class?");
38 if (Proxy.getInvocationHandler(proxy) == null)
42 Shapes shapes = (Shapes) proxy;
46 Quads quads = (Quads) proxy;
49 Colors colors = (Colors) proxy;
54 Trace trace = (Trace) proxy;
75 Method[] methods = proxy.getClass().getDeclaredMethods();
86 Arrays.deepToString(proxy
241 invoke(Object proxy, Method method, Object[] args) argument
[all...]
H A DFloatSelect.java29 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { argument
H A DClash.java23 * Try to instantiate a proxy class with interfaces that have conflicting
65 public Object invoke(Object proxy, Method method, Object[] args) argument
H A DClash2.java23 * Try to instantiate a proxy class with interfaces that have conflicting
55 public Object invoke(Object proxy, Method method, Object[] args) argument
H A DClash3.java23 * Try to instantiate a proxy class with interfaces that have conflicting
70 public Object invoke(Object proxy, Method method, Object[] args) argument
H A DConstructorProxy.java43 // not using the non-proxy ArtMethod
49 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { argument
H A DNativeProxy.java28 * Test invoking a proxy method from native code.
53 public Object invoke(final Object proxy, argument
H A DWrappedThrow.java31 Object proxy;
34 proxy = Proxy.newProxyInstance(WrappedThrow.class.getClassLoader(),
42 InterfaceW1 if1 = (InterfaceW1) proxy;
43 InterfaceW2 if2 = (InterfaceW2) proxy;
176 * Invocation handler for our proxy class.
186 * This is called when anything gets invoked in the proxy object.
188 public Object invoke(Object proxy, Method method, Object[] args) argument
H A DClash4.java23 * Try to instantiate a proxy class with interfaces that have conflicting
72 public Object invoke(Object proxy, Method method, Object[] args) argument
H A DReturnsAndArgPassing.java56 public Object invoke(Object proxy, Method method, Object[] args) { argument
57 check(proxy instanceof Proxy);
60 // Check for moving GC bugs in proxy stubs.
/art/test/004-JniTest/src/
H A DMain.java214 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { argument
221 SimpleInterface proxy =
227 if (testGetMethodID(proxy.getClass()) == 0) {
/art/test/
H A DAndroid.libarttest.mk29 044-proxy/native_proxy.cc \
/art/runtime/arch/arm/
H A Dquick_entrypoints_arm.S1249 * Called by managed code that is attempting to call a method on a proxy class. On entry
1250 * r0 holds the proxy method and r1 holds the receiver; r2 and r3 may contain arguments. The
1251 * frame size of the invoked proxy method agrees with a ref and args callee save frame.
1258 blx artQuickProxyInvokeHandler @ (Method* proxy method, receiver, Thread*, SP)
/art/runtime/arch/mips64/
H A Dquick_entrypoints_mips64.S1666 * Called by managed code that is attempting to call a method on a proxy class. On entry
1667 * r0 holds the proxy method; r1, r2 and r3 may contain arguments.
1673 jal artQuickProxyInvokeHandler # (Method* proxy method, receiver, Thread*, SP)

Completed in 227 milliseconds