/art/test/1945-proxy-method-arguments/src/ |
D | Main.java | 32 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/ |
D | NarrowingTest.java | 32 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()
|
D | BasicTest.java | 33 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 …]
|
D | WrappedThrow.java | 31 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
|
D | FloatSelect.java | 29 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { in invoke() argument
|
D | Clash2.java | 55 public Object invoke(Object proxy, Method method, Object[] args) in invoke() argument
|
D | ConstructorProxy.java | 49 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { in invoke() argument
|
D | Clash.java | 65 public Object invoke(Object proxy, Method method, Object[] args) in invoke() argument
|
D | NativeProxy.java | 53 public Object invoke(final Object proxy, in invoke() argument
|
D | Clash4.java | 72 public Object invoke(Object proxy, Method method, Object[] args) in invoke() argument
|
D | OOMEOnDispatch.java | 61 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { in invoke() argument
|
D | Clash3.java | 70 public Object invoke(Object proxy, Method method, Object[] args) in invoke() argument
|
D | ReturnsAndArgPassing.java | 56 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/ |
D | info.txt | 1 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
|
D | expected.txt | 2 proxy: $Proxy0
|
/art/test/616-cha-regression-proxy-method/src/ |
D | Main.java | 61 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/ |
D | info.txt | 1 Regression test for Class Hierarchy Analysis (CHA) on visiting proxy method frame.
|
/art/test/616-cha-proxy-method-inline/ |
D | info.txt | 1 Test for Class Hierarchy Analysis (CHA) on inlining a cross-dex proxy method.
|
/art/test/676-proxy-jit-at-first-use/ |
D | info.txt | 1 Regression test for "jit at first use" (-Xjitthreshold:0) crash for proxy methods. b/73718713
|
/art/dt_fd_forward/ |
D | README.md | 6 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/ |
D | Main.java | 35 public Object invoke(Object proxy, Method method, Object[] args) { in invoke() argument
|
/art/test/691-hiddenapi-proxy/src/ |
D | Main.java | 35 public Object invoke(Object proxy, Method method, Object[] args) { in main()
|
/art/test/616-cha-proxy-method-inline/src/ |
D | Main.java | 35 public Object invoke(Object proxy, Method m, Object[] args) throws Throwable { in invoke() argument
|
/art/test/004-JniTest/src/ |
D | Main.java | 250 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/ |
D | Main.java | 58 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { in invoke() argument
|