Searched defs:Proxy (Results 1 - 2 of 2) sorted by relevance

/dalvik/libcore/luni/src/main/java/java/net/
H A DProxy.java22 * Proxy} stores a type and an address and is immutable. There are three types
29 public class Proxy { class
32 * Represents the proxy type setting {@code Proxy.Type.DIRECT}. It tells
36 public static final Proxy NO_PROXY = new Proxy();
38 private Proxy.Type type;
43 * Creates a new {@code Proxy} instance. {@code SocketAddress} must NOT be
44 * {@code null} when {@code type} is either {@code Proxy.Type.HTTP} or
45 * {@code Proxy.Type.SOCKS}. To create a {@code Proxy} instanc
58 public Proxy(Proxy.Type type, SocketAddress sa) { method in class:Proxy
75 private Proxy() { method in class:Proxy
[all...]
/dalvik/libcore/luni/src/main/java/java/lang/reflect/
H A DProxy.java33 * {@code Proxy} defines methods for creating dynamic proxy classes and instances.
40 public class Proxy implements Serializable { class in inherits:Serializable
58 private Proxy() { method in class:Proxy
62 * Constructs a new {@code Proxy} instance with the specified invocation
68 protected Proxy(InvocationHandler h) { method in class:Proxy
167 String nextClassName = "$Proxy" + NextClassNameIndex++; //$NON-NLS-1$
282 return ((Proxy) proxy).h;

Completed in 227 milliseconds