Home
last modified time | relevance | path

Searched refs:proxy (Results 1 – 25 of 33) sorted by relevance

12

/art/test/1945-proxy-method-arguments/src/
DMain.java32 public Object invoke(Object proxy, Method method, Object[] args) { in invoke() argument
39 testMethod0(proxy, args); in invoke()
41 testMethod1(proxy, args); in invoke()
43 testMethod10(proxy, args); in invoke()
45 testMethod10Even(proxy, args); in invoke()
50 private void testMethod0(Object proxy, Object[] args) { in testMethod0() argument
54 Main.assertEquals(proxy, arg0); in testMethod0()
57 private void testMethod1(Object proxy, Object[] args) { in testMethod1() argument
61 Main.assertEquals(proxy, arg0); in testMethod1()
68 private void testMethod10(Object proxy, Object[] args) { in testMethod10() argument
[all …]
/art/test/044-proxy/src/
DNarrowingTest.java32 I2 proxy = (I2) Proxy.newProxyInstance(NarrowingTest.class.getClassLoader(), in main() local
37 public Object invoke(Object proxy, Method method, in main()
48 Main.registerProxyClassName(proxy.getClass().getCanonicalName()); in main()
50 Method[] methods = proxy.getClass().getDeclaredMethods(); in main()
55 System.out.println("Invoking foo using I2 type: " + proxy.foo()); in main()
57 I1 proxyAsParent = proxy; in main()
61 proxy.foo(); in main()
DBasicTest.java33 Object proxy = createProxy(proxyMe); in main() local
35 if (!Proxy.isProxyClass(proxy.getClass())) in main()
37 if (Proxy.getInvocationHandler(proxy) == null) in main()
41 Shapes shapes = (Shapes) proxy; in main()
45 Quads quads = (Quads) proxy; in main()
48 Colors colors = (Colors) proxy; in main()
53 Trace trace = (Trace) proxy; in main()
79 Method[] methods = proxy.getClass().getDeclaredMethods(); in main()
82 Arrays.deepToString(proxy.getClass().getInterfaces())); in main()
103 Object proxy = null; in createProxy() local
[all …]
DWrappedThrow.java31 Object proxy; in main() local
34 proxy = Proxy.newProxyInstance(WrappedThrow.class.getClassLoader(), in main()
42 InterfaceW1 if1 = (InterfaceW1) proxy; in main()
43 InterfaceW2 if2 = (InterfaceW2) proxy; in main()
188 public Object invoke(Object proxy, Method method, Object[] args) in invoke() argument
DFloatSelect.java29 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { in invoke() argument
DClash2.java55 public Object invoke(Object proxy, Method method, Object[] args) in invoke() argument
DConstructorProxy.java49 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { in invoke() argument
DClash.java65 public Object invoke(Object proxy, Method method, Object[] args) in invoke() argument
DNativeProxy.java53 public Object invoke(final Object proxy, in invoke() argument
DClash4.java72 public Object invoke(Object proxy, Method method, Object[] args) in invoke() argument
DOOMEOnDispatch.java61 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { in invoke() argument
DClash3.java70 public Object invoke(Object proxy, Method method, Object[] args) in invoke() argument
DReturnsAndArgPassing.java56 public Object invoke(Object proxy, Method method, Object[] args) { in invoke() argument
57 check(proxy instanceof Proxy); in invoke()
/art/test/1945-proxy-method-arguments/
Dinfo.txt1 Test checking that reference arguments of proxy methods are visited as
3 Previously, if the proxy method (direcly or indirectly) executed code
4 accessing one of these reference arguments in the proxy method stack
Dexpected.txt2 proxy: $Proxy0
/art/test/616-cha-regression-proxy-method/src/
DMain.java61 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { in invoke() argument
110 Runnable proxy = (Runnable)Proxy.newProxyInstance( in main() local
114 proxy.run(); in main()
/art/test/616-cha-regression-proxy-method/
Dinfo.txt1 Regression test for Class Hierarchy Analysis (CHA) on visiting proxy method frame.
/art/test/616-cha-proxy-method-inline/
Dinfo.txt1 Test for Class Hierarchy Analysis (CHA) on inlining a cross-dex proxy method.
/art/test/676-proxy-jit-at-first-use/
Dinfo.txt1 Regression test for "jit at first use" (-Xjitthreshold:0) crash for proxy methods. b/73718713
/art/dt_fd_forward/
DREADME.md6 It allows one to handle and proxy JDWP traffic by supplying the implementation
16 When this transport has successfully received fds from the proxy it sends the
19 When this transport has closed its copies of the fds it will send the proxy the
/art/test/676-proxy-jit-at-first-use/src/
DMain.java35 public Object invoke(Object proxy, Method method, Object[] args) { in invoke() argument
/art/test/691-hiddenapi-proxy/src/
DMain.java35 public Object invoke(Object proxy, Method method, Object[] args) { in main()
/art/test/616-cha-proxy-method-inline/src/
DMain.java35 public Object invoke(Object proxy, Method m, Object[] args) throws Throwable { in invoke() argument
/art/test/004-JniTest/src/
DMain.java250 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { in invoke() argument
257 SimpleInterface proxy = in testProxyGetMethodID() local
263 if (testGetMethodID(proxy.getClass()) == 0) { in testProxyGetMethodID()
/art/test/165-lock-owner-proxy/src/
DMain.java58 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { in invoke() argument

12