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

  /cts/tests/tests/net/src/android/net/cts/
ProxyTest.java 24 import android.net.Proxy;
27 @TestTargetClass(Proxy.class)
32 method = "Proxy",
36 new Proxy();
54 int defaultPort = Proxy.getDefaultPort();
55 if(null == Proxy.getDefaultHost()) {
  /frameworks/base/core/java/android/net/
Proxy.java 28 * A convenience class for accessing the user and default proxy
31 final public class Proxy {
40 * Return the proxy host set by the user.
41 * @param ctx A Context used to get the settings for the proxy host.
66 * Return the proxy port set by the user.
67 * @param ctx A Context used to get the settings for the proxy port.
68 * @return The port number to use or -1 if no proxy is to be used.
93 * Return the default proxy host specified by the carrier.
94 * @return String containing the host name or null if there is no proxy for
98 String host = SystemProperties.get("net.gprs.http-proxy");
    [all...]
  /libcore/luni/src/main/java/java/net/
Proxy.java 19 * This class represents proxy server settings. A created instance of {@code
20 * Proxy} stores a type and an address and is immutable. There are three types
27 public class Proxy {
30 * Represents the proxy type setting {@code Proxy.Type.DIRECT}. It tells
31 * protocol handlers that there is no proxy to be used. The address is set
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 b
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
OldProxyTest.java 19 import java.net.Proxy;
28 Proxy proxy = new Proxy(Proxy.Type.SOCKS, address); local
29 assertEquals(address, proxy.address());
32 new Proxy(Proxy.Type.SOCKS, null);
42 Proxy proxy1 = new Proxy(Proxy.Type.HTTP, address1)
61 Proxy proxy = new Proxy(Proxy.Type.HTTP, address); local
    [all...]
  /frameworks/base/core/java/android/os/storage/
IMountServiceListener.java 43 * generating a proxy if needed.
53 return new IMountServiceListener.Stub.Proxy(obj);
92 private static class Proxy implements IMountServiceListener {
95 Proxy(IBinder remote) {
IMountShutdownObserver.java 42 * generating a proxy if needed.
52 return new IMountShutdownObserver.Stub.Proxy(obj);
79 private static class Proxy implements IMountShutdownObserver {
82 Proxy(IBinder remote) {
IObbActionListener.java 43 * generating a proxy if needed.
53 return new IObbActionListener.Stub.Proxy(obj);
84 private static class Proxy implements IObbActionListener {
87 Proxy(IBinder remote) {
IMountService.java 36 private static class Proxy implements IMountService {
39 Proxy(IBinder remote) {
626 * proxy if needed.
636 return new IMountService.Stub.Proxy(obj);
    [all...]
  /libcore/luni/src/main/java/java/lang/reflect/
Proxy.java 31 * {@code Proxy} defines methods for creating dynamic proxy classes and instances.
32 * A proxy class implements a declared set of interfaces and delegates method
38 public class Proxy implements Serializable {
56 private Proxy() {
60 * Constructs a new {@code Proxy} instance with the specified invocation
64 * the invocation handler for the newly created proxy
66 protected Proxy(InvocationHandler h) {
79 * the class loader that will define the proxy class
82 * interface that will be implemented by the returned proxy
    [all...]
  /external/v8/src/
factory.cc 179 Handle<Proxy> wrapper = Factory::NewProxy(0, TENURED);
199 Handle<Proxy> Factory::NewProxy(Address addr, PretenureFlag pretenure) {
200 CALL_HEAP_FUNCTION(Heap::AllocateProxy(addr, pretenure), Proxy);
204 Handle<Proxy> Factory::NewProxy(const AccessorDescriptor* desc) {
    [all...]
objects.h 90 // - Proxy
    [all...]
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/sdk/9/
android.jar 
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 

Completed in 247 milliseconds