Home
last modified time | relevance | path

Searched refs:Proxy (Results 1 – 25 of 52) sorted by relevance

123

/art/test/1945-proxy-method-arguments/
Dexpected-stdout.txt3 Proxy for interface TestInterface.method0
5 Proxy for interface TestInterface.method1
8 Proxy for interface TestInterface.method10
20 Proxy for interface TestInterface.method10Even
/art/test/044-proxy/src/
DClash.java20 import java.lang.reflect.Proxy;
32 Proxy.newProxyInstance(Clash.class.getClassLoader(), in main()
41 Proxy.newProxyInstance(Clash.class.getClassLoader(), in main()
DHotProxy.java34 check(proxy instanceof Proxy); in invoke()
43 (MyInterface)Proxy.newProxyInstance(HotProxy.class.getClassLoader(), in testProxy()
DClash2.java20 import java.lang.reflect.Proxy;
31 Proxy.newProxyInstance(Clash.class.getClassLoader(), in main()
DConstructorProxy.java20 import java.lang.reflect.Proxy;
36 Class<?> proxyClass = Proxy.getProxyClass( in runTest()
DNativeProxy.java23 import java.lang.reflect.Proxy;
41 NativeInterface inf = (NativeInterface)Proxy.newProxyInstance( in main()
DClash3.java20 import java.lang.reflect.Proxy;
31 Proxy.newProxyInstance(Clash.class.getClassLoader(), in main()
DClash4.java20 import java.lang.reflect.Proxy;
31 Proxy.newProxyInstance(Clash.class.getClassLoader(), in main()
DOOMEOnDispatch.java19 import java.lang.reflect.Proxy;
42 OOMEInterface inf = (OOMEInterface)Proxy.newProxyInstance( in main()
DFloatSelect.java35 FloatSelectI proxyObject = (FloatSelectI) Proxy.newProxyInstance( in main()
DBasicTest.java23 import java.lang.reflect.Proxy;
35 if (!Proxy.isProxyClass(proxy.getClass())) in main()
37 if (Proxy.getInvocationHandler(proxy) == null) in main()
98 Class<?> proxyClass = Proxy.getProxyClass(Shapes.class.getClassLoader(), in createProxy()
/art/runtime/mirror/
Dproxy.h29 class MANAGED Proxy final : public Object {
36 DISALLOW_IMPLICIT_CONSTRUCTORS(Proxy);
/art/test/992-source-data/src/art/
DTest992.java19 import java.lang.reflect.Proxy;
38 doTest(Proxy.getProxyClass(Test992.class.getClassLoader(), Runnable.class)); in run()
42 if (k != null && Proxy.class.isAssignableFrom(k)) { in printClass()
/art/tools/ahat/src/test-dump/
DDumpedStuff.java133 public static class Proxy implements IDumpedManager { class in DumpedStuff.IDumpedManager.Stub
135 Proxy(android.os.IBinder binderProxy) { in Proxy() method in DumpedStuff.IDumpedManager.Stub.Proxy
144 public static class Proxy implements IBinderInterfaceImpostor { class in DumpedStuff.IBinderInterfaceImpostor.Stub
146 Proxy(android.os.IBinder binderProxy) { in Proxy() method in DumpedStuff.IBinderInterfaceImpostor.Stub.Proxy
205 Object correctBinderProxyObject = new IDumpedManager.Stub.Proxy(correctBinderProxy);
206 Object impostorBinderProxyObject = new IBinderInterfaceImpostor.Stub.Proxy(imposedBinderProxy);
/art/test/676-proxy-jit-at-first-use/src/
DMain.java19 import java.lang.reflect.Proxy;
23 Interface i = (Interface) Proxy.newProxyInstance(Main.class.getClassLoader(), in main()
/art/test/691-hiddenapi-proxy/src/
DMain.java21 import java.lang.reflect.Proxy;
30 Object obj = Proxy.newProxyInstance( in main()
/art/test/616-cha-regression-proxy-method/src/
DMain.java19 import java.lang.reflect.Proxy;
110 Runnable proxy = (Runnable)Proxy.newProxyInstance( in main()
/art/test/165-lock-owner-proxy/src/
DMain.java19 import java.lang.reflect.Proxy;
30 inf = (SimpleInterface)Proxy.newProxyInstance(SimpleInterface.class.getClassLoader(), in main()
/art/test/1914-get-local-instance/
Dexpected-stdout.txt14 …void art.Test1914$Foo.InterfaceProxyMethod(java.lang.Runnable) got value: Proxy for [interface art…
15 Value is 'Proxy for [interface art.Test1914$Foo]' (class: PROXY CLASS)
/art/test/1939-proxy-frames/src/art/
DTest1939.java23 import java.lang.reflect.Proxy;
48 if (o instanceof Method && Proxy.isProxyClass(((Method)o).getDeclaringClass())) { in SafeToString()
159 return Proxy.newProxyInstance(
/art/test/1914-get-local-instance/src/art/
DTest1914.java23 import java.lang.reflect.Proxy;
40 + (val != null ? (val instanceof Proxy ? "PROXY CLASS" : val.getClass()) : "NULL") + ")"); in reportValue()
176 return Proxy.newProxyInstance(
/art/test/691-hiddenapi-proxy/
Dinfo.txt1 Tests that inspecting Proxy classes with reflection does not crash ART. Hidden API access checks
/art/test/988-method-trace/src/art/
DTest988.java24 import java.lang.reflect.Proxy;
66 Proxy.getProxyClass(Test988.class.getClassLoader(), new Class[] { Runnable.class })); in Proxy.getProxyClass()
345 Runnable runnable = (Runnable)Proxy.newProxyInstance(
388 Proxy.class.toString();
389 Proxy.getProxyClass(
/art/runtime/native/
Djava_lang_reflect_Proxy.cc41 …FAST_NATIVE_METHOD(Proxy, generateProxy, "(Ljava/lang/String;[Ljava/lang/Class;Ljava/lang/ClassLoa…
/art/test/044-proxy/
Dexpected-stdout.txt57 Proxy interfaces: [interface Quads, interface Colors, interface Trace]
58 Proxy methods: [public final R0a $PROXY_CLASS_NAME0$.checkMe(), public final R0aa $PROXY_CLASS_NAME…
91 Proxy methods: [public final boolean $PROXY_CLASS_NAME1$.equals(java.lang.Object), public final int…
98 Proxy narrowed invocation return type passed

123