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

/libcore/luni/src/main/java/java/net/
H A DProxy.java20 * Proxy} stores a type and an address and is immutable. There are three types
27 public class Proxy { class
30 * Represents the proxy type setting {@code Proxy.Type.DIRECT}. It tells
34 public static final Proxy NO_PROXY = new Proxy();
36 private Proxy.Type type;
41 * Creates a new {@code Proxy} instance. {@code SocketAddress} must NOT be
42 * {@code null} when {@code type} is either {@code Proxy.Type.HTTP} or
43 * {@code Proxy.Type.SOCKS}. To create a {@code Proxy} instanc
56 public Proxy(Proxy.Type type, SocketAddress sa) { method in class:Proxy
72 private Proxy() { method in class:Proxy
[all...]
/libcore/libdvm/src/main/java/java/lang/reflect/
H A DProxy.java27 * {@code Proxy} defines methods for creating dynamic proxy classes and instances.
34 public class Proxy implements Serializable { class in inherits:Serializable
52 private Proxy() { method in class:Proxy
56 * Constructs a new {@code Proxy} instance with the specified invocation
62 protected Proxy(InvocationHandler h) { method in class:Proxy
157 String nextClassName = "$Proxy" + NextClassNameIndex++;
264 return ((Proxy) proxy).h;
/libcore/libart/src/main/java/java/lang/reflect/
H A DProxy.java32 * {@code Proxy} defines methods for creating dynamic proxy classes and instances.
39 public class Proxy implements Serializable { class in inherits:Serializable
74 private Proxy() { method in class:Proxy
78 * Constructs a new {@code Proxy} instance with the specified invocation
84 protected Proxy(InvocationHandler h) { method in class:Proxy
156 ? commonPackageName + ".$Proxy"
157 : "$Proxy";
257 // TODO: return false for subclasses of Proxy not created by generateProxy()
258 if (!(proxy instanceof Proxy)) {
261 return ((Proxy) prox
[all...]

Completed in 660 milliseconds