Home
last modified time | relevance | path

Searched refs:SimpleInterface (Results 1 – 2 of 2) sorted by relevance

/art/test/165-lock-owner-proxy/src/
DMain.java31 static SimpleInterface inf;
43 inf = (SimpleInterface)Proxy.newProxyInstance(SimpleInterface.class.getClassLoader(), in main()
44 new Class[] { SimpleInterface.class }, new EmptyInvocationHandler()); in main()
64 private static interface SimpleInterface { interface in Main
/art/test/004-JniTest/src/
DMain.java250 private interface SimpleInterface { interface in Main
262 SimpleInterface proxy = in testProxyGetMethodID()
263 (SimpleInterface) Proxy.newProxyInstance(SimpleInterface.class.getClassLoader(), in testProxyGetMethodID()
264 new Class<?>[] {SimpleInterface.class}, handler); in testProxyGetMethodID()
265 if (testGetMethodID(SimpleInterface.class) == 0) { in testProxyGetMethodID()