HomeSort by relevance Sort by last modified time
    Searched defs:invocationHandler (Results 1 - 3 of 3) sorted by null

  /libcore/support/src/test/java/tests/io/
MockOs.java 19 import java.lang.reflect.InvocationHandler;
37 private final InheritableThreadLocal<Map<String, Deque<InvocationHandler>>> handlers
38 = new InheritableThreadLocal<Map<String, Deque<InvocationHandler>>>() {
39 @Override protected Map<String, Deque<InvocationHandler>> initialValue() {
40 return new HashMap<String, Deque<InvocationHandler>>();
45 private final InvocationHandler delegateHandler = new InvocationHandler() {
55 private final InvocationHandler invocationHandler = new InvocationHandler() {
    [all...]
  /external/dexmaker/src/mockito/java/com/google/dexmaker/mockito/
DexmakerMockMaker.java 21 import java.lang.reflect.InvocationHandler;
41 InvocationHandler invocationHandler = new InvocationHandlerAdapter(handler);
51 invocationHandler);
63 handlerField.set(mock, invocationHandler);
85 InvocationHandler invocationHandler = Proxy.getInvocationHandler(mock);
86 return invocationHandler instanceof InvocationHandlerAdapter
87 ? (InvocationHandlerAdapter) invocationHandler
92 InvocationHandler invocationHandler = ProxyBuilder.getInvocationHandler(mock)
    [all...]
  /external/dexmaker/src/test/java/com/google/dexmaker/stock/
ProxyBuilderTest.java 22 import java.lang.reflect.InvocationHandler;
221 public static class InvokeSuperHandler implements InvocationHandler {
287 InvocationHandler handler = new InvocationHandler() {
364 InvocationHandler delegatesOddValues = new InvocationHandler() {
385 InvocationHandler handler = new InvocationHandler() {
644 InvocationHandler invocationHandler = new InvocationHandler()
    [all...]

Completed in 2255 milliseconds