HomeSort by relevance Sort by last modified time
    Searched defs:proxy (Results 1 - 25 of 820) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/proxy/
direct.go 5 package proxy package
13 // Direct is a direct proxy: one that makes network connections directly.
per_host_test.go 5 package proxy package
50 t.Errorf("Hosts which went to the default proxy didn't match. Got %v, want %v", def.addrs, expectedDef)
53 t.Errorf("Hosts which went to the bypass proxy didn't match. Got %v, want %v", bypass.addrs, expectedBypass)
proxy_test.go 5 package proxy package
36 proxy, err := FromURL(url, Direct)
44 if c, err := proxy.Dial("tcp", "localhost:"+port); err != nil {
69 proxy, err := SOCKS5("tcp", gateway.Addr().String(), nil, Direct)
73 if c, err := proxy.Dial("tcp", endSystem.Addr().String()); err != nil {
proxy.go 5 // Package proxy provides support for a variety of protocols to proxy network
7 package proxy // import "golang.org/x/net/proxy" package
18 // Dial connects to the given address via the proxy.
27 // FromEnvironment returns the dialer specified by the proxy related variables in
39 proxy, err := FromURL(proxyURL, Direct)
46 return proxy
49 perHost := NewPerHost(proxy, Direct)
93 return nil, errors.New("proxy: unknown scheme: " + u.Scheme
    [all...]
per_host.go 5 package proxy package
78 // specifying hosts that should use the bypass proxy. Each value is either an
108 // AddIP specifies an IP address that will use the bypass proxy. Note that
115 // AddNetwork specifies an IP range that will use the bypass proxy. Note that
122 // AddZone specifies a DNS suffix that will use the bypass proxy. A zone of
134 // AddHost specifies a hostname that will use the bypass proxy.
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/proxy/
direct.go 5 package proxy package
13 // Direct is a direct proxy: one that makes network connections directly.
per_host_test.go 5 package proxy package
50 t.Errorf("Hosts which went to the default proxy didn't match. Got %v, want %v", def.addrs, expectedDef)
53 t.Errorf("Hosts which went to the bypass proxy didn't match. Got %v, want %v", bypass.addrs, expectedBypass)
proxy_test.go 5 package proxy package
36 proxy, err := FromURL(url, Direct)
44 if c, err := proxy.Dial("tcp", "localhost:"+port); err != nil {
69 proxy, err := SOCKS5("tcp", gateway.Addr().String(), nil, Direct)
73 if c, err := proxy.Dial("tcp", endSystem.Addr().String()); err != nil {
proxy.go 5 // Package proxy provides support for a variety of protocols to proxy network
7 package proxy // import "golang.org/x/net/proxy" package
18 // Dial connects to the given address via the proxy.
27 // FromEnvironment returns the dialer specified by the proxy related variables in
39 proxy, err := FromURL(proxyURL, Direct)
46 return proxy
49 perHost := NewPerHost(proxy, Direct)
93 return nil, errors.New("proxy: unknown scheme: " + u.Scheme
    [all...]
  /libcore/ojluni/src/main/java/sun/net/
ApplicationProxy.java 28 import java.net.Proxy;
32 * Proxy wrapper class so that we can determine application set
35 public final class ApplicationProxy extends Proxy {
36 private ApplicationProxy(Proxy proxy) {
37 super(proxy.type(), proxy.address());
40 public static ApplicationProxy create(Proxy proxy) {
41 return new ApplicationProxy(proxy);
    [all...]
  /external/javassist/src/main/javassist/util/proxy/
MethodFilter.java 16 package javassist.util.proxy;
MethodHandler.java 16 package javassist.util.proxy;
21 * The interface implemented by the invocation handler of a proxy
28 * Is called when a method is invoked on a proxy instance associated
31 * @param self the proxy instance.
39 * on the proxy instance. If a parameter type is
SecurityActions.java 15 package javassist.util.proxy;
ProxyObject.java 16 package javassist.util.proxy;
19 * The interface implemented by proxy classes.
ProxyObjectOutputStream.java 16 package javassist.util.proxy;
25 * be used when serialising proxies created from a proxy factory configured with
  /art/test/044-proxy/src/
NarrowingTest.java 32 I2 proxy = (I2) Proxy.newProxyInstance(NarrowingTest.class.getClassLoader(), local
37 public Object invoke(Object proxy, Method method,
48 Main.registerProxyClassName(proxy.getClass().getCanonicalName());
50 Method[] methods = proxy.getClass().getDeclaredMethods();
52 System.out.println("Proxy methods: " +
55 System.out.println("Invoking foo using I2 type: " + proxy.foo());
57 I1 proxyAsParent = proxy;
61 proxy.foo();
68 System.out.println("Proxy narrowed invocation return type passed")
    [all...]
  /external/apache-harmony/beans/src/test/java/org/apache/harmony/beans/tests/java/beans/
PropertyChangeListenerProxyTest.java 31 PropertyChangeListenerProxy proxy; field in class:PropertyChangeListenerProxyTest
42 proxy = new PropertyChangeListenerProxy(name, listener);
46 proxy = new PropertyChangeListenerProxy(null, listener);
47 assertSame(listener, proxy.getListener());
48 assertNull(proxy.getPropertyName());
51 proxy.propertyChange(newevent);
53 proxy = new PropertyChangeListenerProxy(name, null);
54 assertSame(name, proxy.getPropertyName());
55 assertNull(proxy.getListener());
57 proxy.propertyChange(new PropertyChangeEvent(new Object(), "name"
82 PropertyChangeListenerProxy proxy = new PropertyChangeListenerProxy( local
    [all...]
  /external/skia/src/gpu/
GrOnFlushResourceProvider.cpp 25 // Because this is being allocated at the start of a flush we must ensure the proxy
28 sk_sp<GrSurfaceProxy> proxy = proxyProvider->createProxy(tmpDesc, SkBackingFit::kExact, local
31 if (!proxy->asRenderTargetProxy()) {
36 fDrawingMgr->makeRenderTargetContext(std::move(proxy),
45 // we have to manually ensure it is allocated here. The proxy had best have been created
57 sk_sp<GrSurfaceProxy> proxy,
61 fDrawingMgr->makeRenderTargetContext(std::move(proxy),
72 // we have to manually ensure it is allocated here. The proxy had best have been created
83 bool GrOnFlushResourceProvider::instatiateProxy(GrSurfaceProxy* proxy) {
86 if (GrSurfaceProxy::LazyState::kNot != proxy->lazyInstantiationState())
    [all...]
  /external/skia/tests/
ProxyConversionTest.cpp 124 sk_sp<GrTextureProxy> proxy = proxyProvider->createProxy(desc, SkBackingFit::kApprox, local
128 GrRenderTargetProxy* rtProxy = proxy->asRenderTargetProxy();
137 sk_sp<GrTextureProxy> proxy = proxyProvider->createProxy(desc, SkBackingFit::kApprox, local
141 GrTextureProxy* tProxy = proxy->asTextureProxy();
153 sk_sp<GrTextureProxy> proxy = proxyProvider->createProxy(desc, SkBackingFit::kApprox, local
156 GrTextureProxy* tProxy = proxy->asTextureProxy();
  /external/skia/tools/fonts/
SkRandomScalerContext.h 21 SkRandomTypeface(sk_sp<SkTypeface> proxy, const SkPaint&, bool fakeit);
23 SkTypeface* proxy() const { return fProxy.get(); } function in class:SkRandomTypeface
  /external/skqp/src/gpu/
GrOnFlushResourceProvider.cpp 25 // Because this is being allocated at the start of a flush we must ensure the proxy
28 sk_sp<GrSurfaceProxy> proxy = proxyProvider->createProxy(tmpDesc, SkBackingFit::kExact, local
31 if (!proxy->asRenderTargetProxy()) {
36 fDrawingMgr->makeRenderTargetContext(std::move(proxy),
45 // we have to manually ensure it is allocated here. The proxy had best have been created
59 sk_sp<GrSurfaceProxy> proxy,
63 fDrawingMgr->makeRenderTargetContext(std::move(proxy),
74 // we have to manually ensure it is allocated here. The proxy had best have been created
  /external/skqp/tests/
ProxyConversionTest.cpp 124 sk_sp<GrTextureProxy> proxy = proxyProvider->createProxy(desc, SkBackingFit::kApprox, local
128 GrRenderTargetProxy* rtProxy = proxy->asRenderTargetProxy();
137 sk_sp<GrTextureProxy> proxy = proxyProvider->createProxy(desc, SkBackingFit::kApprox, local
141 GrTextureProxy* tProxy = proxy->asTextureProxy();
153 sk_sp<GrTextureProxy> proxy = proxyProvider->createProxy(desc, SkBackingFit::kApprox, local
156 GrTextureProxy* tProxy = proxy->asTextureProxy();
  /external/skqp/tools/
SkRandomScalerContext.h 21 SkRandomTypeface(sk_sp<SkTypeface> proxy, const SkPaint&, bool fakeit);
23 SkTypeface* proxy() const { return fProxy.get(); } function in class:SkRandomTypeface
  /libcore/ojluni/src/main/java/sun/util/logging/
LoggingSupport.java 48 private static final LoggingProxy proxy = field in class:LoggingSupport
71 return proxy != null;
75 if (proxy == null)
81 return proxy.getLoggerNames();
85 return proxy.getLoggerLevel(loggerName);
90 proxy.setLoggerLevel(loggerName, levelName);
95 return proxy.getParentLoggerName(loggerName);
100 return proxy.getLogger(name);
105 return proxy.getLevel(logger);
110 proxy.setLevel(logger, newLevel)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/processing/imagebackend/
ImageToProcess.java 31 public final ImageProxy proxy; field in class:ImageToProcess
37 * @param proxy The underlying image to process.
43 * (0, 0)-(proxy.width, proxy.height) is a no-op.
45 public ImageToProcess(ImageProxy proxy, OrientationManager.DeviceOrientation imageRotation,
47 this.proxy = proxy;
56 * @param proxy The underlying image to process.
60 public ImageToProcess(ImageProxy proxy, OrientationManager.DeviceOrientation imageRotation,
62 this(proxy, imageRotation, metadata, new Rect(0, 0, proxy.getWidth(), proxy.getHeight()))
    [all...]

Completed in 313 milliseconds

1 2 3 4 5 6 7 8 91011>>