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.java26 static SimpleInterface inf;
30 inf = (SimpleInterface)Proxy.newProxyInstance(SimpleInterface.class.getClassLoader(), in main()
31 new Class[] { SimpleInterface.class }, new EmptyInvocationHandler()); in main()
52 private static interface SimpleInterface { interface in Main
/art/test/004-JniTest/src/
DMain.java245 private interface SimpleInterface { interface in Main
257 SimpleInterface proxy = in testProxyGetMethodID()
258 (SimpleInterface) Proxy.newProxyInstance(SimpleInterface.class.getClassLoader(), in testProxyGetMethodID()
259 new Class<?>[] {SimpleInterface.class}, handler); in testProxyGetMethodID()
260 if (testGetMethodID(SimpleInterface.class) == 0) { in testProxyGetMethodID()