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

1 23 4 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/proxy/
socks5.go 5 package proxy package
63 // Dial connects to the address addr on the network net via the SOCKS5 proxy.
68 return nil, errors.New("proxy: no support for SOCKS5 proxy connections of type " + network)
82 // connect takes an existing connection to a socks5 proxy server,
93 return errors.New("proxy: failed to parse port number: " + portStr)
96 return errors.New("proxy: port number out of range: " + portStr)
110 return errors.New("proxy: failed to write greeting to SOCKS5 proxy at " + s.addr + ": " + err.Error())
114 return errors.New("proxy: failed to read greeting from SOCKS5 proxy at " + s.addr + ": " + err.Error()
    [all...]
  /system/tools/hidl/test/java_test/src/com/android/commands/hidl_test_java/
HidlTestJava.java 264 IBase proxy = IBase.getService("this-doesn't-exist"); local
294 IBaz proxy = IBaz.getService("baz"); local
296 proxy.ping();
298 proxy.someBaseMethod();
301 Expect(proxy.interfaceDescriptor(), IBaz.kInterfaceName);
318 IBase.Foo result = proxy.someOtherBaseMethod(foo);
359 IBase.Foo[] outputArray = proxy.someMethodWithFooArrays(inputArray);
402 proxy.someMethodWithFooVectors(inputVec);
427 IBase.VectorOfArray out = proxy.someMethodWithVectorOfArray(in);
451 ArrayList<byte[]> out = proxy.someMethodTakingAVectorOfArray(in)
    [all...]
  /art/test/616-cha-regression-proxy-method/src/
Main.java 19 import java.lang.reflect.Proxy;
61 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
100 // Also create a proxy method such that a proxy method's frame is visited
107 // Create another thread that calls a proxy method.
110 Runnable proxy = (Runnable)Proxy.newProxyInstance( local
114 proxy.run();
  /external/guava/guava-tests/test/com/google/common/reflect/
AbstractInvocationHandlerTest.java 29 import java.lang.reflect.Proxy;
48 List<String> proxy = newDelegatingList(LIST1); local
49 assertEquals(Proxy.getInvocationHandler(proxy).toString(), proxy.toString());
63 // But whatever, no one is going to proxy List (hopefully).
83 @SuppressWarnings("unchecked") // proxy of List<String>
88 @SuppressWarnings("unchecked") // proxy of List<String>
93 @SuppressWarnings("unchecked") // proxy of Iterable<String>
98 @SuppressWarnings("unchecked") // proxy of List<String
    [all...]
  /external/javassist/src/test/test/javassist/proxy/
ProxySerializationTest.java 1 package test.javassist.proxy;
3 import javassist.util.proxy.*;
13 * {@link javassist.util.proxy.ProxyObjectOutputStream} and @link javassist.util.proxy.ProxyObjectInputStream}
14 * reuses classes located in the proxy cache. This tests the fixes provided for JASSIST-42 and JASSIST-97.
34 TestClass proxy = (TestClass)constructor.newInstance(new Object[] {name}); local
35 ((ProxyObject)proxy).setHandler(handler);
38 out.writeObject(proxy);
46 // since we are reading into the same JVM the new proxy should have the same class as the old proxy
61 TestClass proxy = (TestClass)constructor.newInstance(new Object[] {name}); local
    [all...]
  /external/apache-http/src/org/apache/http/conn/params/
ConnRouteParams.java 89 * @return the default proxy set in the argument parameters, or
96 HttpHost proxy = (HttpHost) local
98 if ((proxy != null) && NO_HOST.equals(proxy)) {
100 proxy = null;
102 return proxy;
111 * @param proxy the value to set, may be <code>null</code>.
117 HttpHost proxy) {
121 params.setParameter(DEFAULT_PROXY, proxy);
  /external/apache-http/src/org/apache/http/impl/auth/
AuthSchemeBase.java 58 * Flag whether authenticating against a proxy.
60 private boolean proxy; field in class:AuthSchemeBase
82 this.proxy = false;
84 this.proxy = true;
123 * Returns <code>true</code> if authenticating against a proxy, <code>false</code>
126 * @return <code>true</code> if authenticating against a proxy, <code>false</code>
130 return this.proxy;
  /external/autotest/frontend/client/src/autotest/tko/
EmbeddedTkoClient.java 27 JsonRpcProxy proxy = JsonRpcProxy.createProxy(autotestServerUrl + JsonRpcProxy.TKO_BASE_URL, local
29 JsonRpcProxy.setProxy(JsonRpcProxy.TKO_BASE_URL, proxy);
  /external/google-breakpad/src/tools/linux/symupload/
minidump_upload.cc 53 string proxy; member in struct:Options
71 options->proxy,
100 fprintf(stderr, "-x:\t <host[:port]> Use HTTP proxy on given port\n");
101 fprintf(stderr, "-u:\t <user[:password]> Set proxy user and password\n");
124 options->proxy = optarg;
  /external/guice/extensions/persist/src/com/google/inject/persist/jpa/
JpaPersistModule.java 38 import java.lang.reflect.Proxy;
128 // and hashcode as a proxy (!) for the proxy's equals and hashcode.
157 @SuppressWarnings("unchecked") // Proxy must produce instance of type given.
158 T proxy = (T) Proxy local
162 bind(iface).toInstance(proxy);
  /external/skia/gm/
texdata.cpp 97 sk_sp<GrTextureProxy> proxy = proxyProvider->createTextureProxy(desc, SkBudgeted::kNo, local
99 if (!proxy) {
104 std::move(proxy));
  /external/skia/src/gpu/
GrCoordTransform.h 33 * Create a transformation that maps [0, 1] to a proxy's boundaries. The proxy origin also
36 GrCoordTransform(GrTextureProxy* proxy) {
37 SkASSERT(proxy);
39 this->reset(SkMatrix::I(), proxy, true); local
43 * Create a transformation from a matrix. The proxy origin also implies whether a y-reversal
46 GrCoordTransform(const SkMatrix& m, GrTextureProxy* proxy) {
47 SkASSERT(proxy);
49 this->reset(m, proxy, true);
60 void reset(const SkMatrix& m, GrTextureProxy* proxy, bool normalize)
113 const GrTextureProxy* proxy() const { return fProxy; } function in class:GrCoordTransform
    [all...]
  /external/skia/tests/
VkUploadPixelsTests.cpp 77 sk_sp<GrTextureProxy> proxy = proxyProvider->createTextureProxy(surfDesc, SkBudgeted::kNo, local
79 REPORTER_ASSERT(reporter, proxy);
80 if (proxy) {
81 sk_sp<GrSurfaceContext> sContext = context->contextPriv().makeWrappedSurfaceContext(proxy);
109 proxy = proxyProvider->createTextureProxy(surfDesc, SkBudgeted::kNo, srcBuffer, 0);
110 REPORTER_ASSERT(reporter, proxy);
111 if (proxy) {
112 sk_sp<GrSurfaceContext> sContext = context->contextPriv().makeWrappedSurfaceContext(proxy);
  /external/skqp/gm/
texdata.cpp 96 sk_sp<GrTextureProxy> proxy = proxyProvider->createTextureProxy(desc, SkBudgeted::kNo, local
98 if (!proxy) {
103 std::move(proxy));
  /external/skqp/src/gpu/
GrBackendTextureImageGenerator.cpp 107 // Ref the release proc to be held by the proxy we make below
137 sk_sp<GrTextureProxy> proxy = proxyProvider->createLazyProxy( local
179 (!willNeedMipMaps || GrMipMapped::kYes == proxy->mipMapped())) {
181 return proxy;
189 SkBackingFit::kExact, info.width(), info.height(), proxy->config(), nullptr, 1,
190 mipMapped, proxy->origin(), nullptr, SkBudgeted::kYes));
197 if (!rtContext->copy(proxy.get(), subset, SkIPoint::Make(0, 0))) {
GrCoordTransform.h 33 * Create a transformation that maps [0, 1] to a proxy's boundaries. The proxy origin also
36 GrCoordTransform(GrTextureProxy* proxy) {
37 SkASSERT(proxy);
39 this->reset(SkMatrix::I(), proxy, true); local
43 * Create a transformation from a matrix. The proxy origin also implies whether a y-reversal
46 GrCoordTransform(const SkMatrix& m, GrTextureProxy* proxy) {
47 SkASSERT(proxy);
49 this->reset(m, proxy, true);
60 void reset(const SkMatrix& m, GrTextureProxy* proxy, bool normalize)
113 const GrTextureProxy* proxy() const { return fProxy; } function in class:GrCoordTransform
    [all...]
  /external/skqp/tests/
ProxyTest.cpp 24 // Check that the surface proxy's member vars are set as expected
26 GrSurfaceProxy* proxy,
31 REPORTER_ASSERT(reporter, proxy->origin() == origin);
32 REPORTER_ASSERT(reporter, proxy->width() == width);
33 REPORTER_ASSERT(reporter, proxy->height() == height);
34 REPORTER_ASSERT(reporter, proxy->config() == config);
35 REPORTER_ASSERT(reporter, !proxy->uniqueID().isInvalid());
36 REPORTER_ASSERT(reporter, proxy->isBudgeted() == budgeted);
138 sk_sp<GrTextureProxy> proxy = proxyProvider->createProxy( local
140 REPORTER_ASSERT(reporter, SkToBool(tex) == SkToBool(proxy));
292 sk_sp<GrTextureProxy> proxy = provider->createProxy(desc, fit, SkBudgeted::kNo); local
    [all...]
VkUploadPixelsTests.cpp 77 sk_sp<GrTextureProxy> proxy = proxyProvider->createTextureProxy(surfDesc, SkBudgeted::kNo, local
79 REPORTER_ASSERT(reporter, proxy);
80 if (proxy) {
81 sk_sp<GrSurfaceContext> sContext = context->contextPriv().makeWrappedSurfaceContext(proxy);
109 proxy = proxyProvider->createTextureProxy(surfDesc, SkBudgeted::kNo, srcBuffer, 0);
110 REPORTER_ASSERT(reporter, proxy);
111 if (proxy) {
112 sk_sp<GrSurfaceContext> sContext = context->contextPriv().makeWrappedSurfaceContext(proxy);
  /external/v8/src/runtime/
runtime-forin.cc 62 // Continue lookup on the proxy's prototype.
63 Handle<JSProxy> proxy = it.GetHolder<JSProxy>(); local
66 JSProxy::GetPrototype(proxy), Object);
  /external/webrtc/webrtc/base/
autodetectproxy.h 35 const ProxyInfo& proxy() const { return proxy_; } function in class:rtc::AutoDetectProxy
40 void set_proxy(const SocketAddress& proxy) {
42 proxy_.address = proxy;
55 rtc::ProxyInfo* proxy);
  /frameworks/base/services/core/java/com/android/server/location/
GeocoderProxy.java 32 * Proxy for IGeocodeProvider implementations.
45 GeocoderProxy proxy = new GeocoderProxy(context, overlaySwitchResId, local
47 if (proxy.bind()) {
48 return proxy;
  /hardware/qcom/gps/msm8909/core/
ContextBase.cpp 66 LBSProxyBase* proxy = NULL; local
73 proxy = (*getter)();
76 if (NULL == proxy) {
77 proxy = new LBSProxyBase();
80 return proxy;
  /hardware/qcom/gps/msm8996/core/
ContextBase.cpp 66 LBSProxyBase* proxy = NULL; local
73 proxy = (*getter)();
76 if (NULL == proxy) {
77 proxy = new LBSProxyBase();
80 return proxy;
  /hardware/qcom/gps/msm8998/core/
ContextBase.cpp 172 LBSProxyBase* proxy = NULL; local
179 proxy = (*getter)();
186 if (NULL == proxy) {
187 proxy = new LBSProxyBase();
190 return proxy;
  /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...]

Completed in 1515 milliseconds

1 23 4 5 6 7 8 91011>>