HomeSort by relevance Sort by last modified time
    Searched defs:proxy (Results 76 - 100 of 319) sorted by null

1 2 34 5 6 7 8 91011>>

  /cts/tests/tests/location/src/android/location/cts/asn1/supl2/supl_init/
SLPMode.java 38 proxy(0), enum constant in enum:SLPMode.Value
  /device/linaro/hikey/hifi/xaf/host-apf/proxy/
xf-proxy.c 23 #define MODULE_TAG PROXY
48 /* ...execute proxy command synchronously */
49 static inline int xf_proxy_cmd_exec(xf_proxy_t *proxy, xf_user_msg_t *msg)
53 /* ...send command to remote proxy */
57 XF_CHK_ERR((m.address = xf_proxy_b2a(proxy, msg->buffer)) != XF_PROXY_BADADDR, -EINVAL);
59 /* ...pass command to remote proxy */
60 XF_CHK_API(xf_ipc_send(&proxy->ipc, &m, msg->buffer));
62 /* ...wait for response reception indication from proxy thread */
63 XF_CHK_API(xf_proxy_response_get(proxy, &m));
69 XF_CHK_ERR((msg->buffer = xf_proxy_a2b(proxy, m.address)) != (void *)-1, -EBADFD)
249 xf_proxy_t *proxy = arg; local
416 xf_proxy_t *proxy = handle->proxy; local
449 xf_proxy_t *proxy = src->proxy; local
497 xf_proxy_t *proxy = src->proxy; local
544 xf_proxy_t *proxy = handle->proxy; local
631 xf_proxy_t *proxy = pool->proxy; local
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/
AbstractPoolEntry.java 167 final HttpHost proxy = route.getProxyHost(); local
171 (proxy != null) ? proxy : route.getTargetHost(),
183 if (proxy == null) {
186 localTracker.connectProxy(proxy, this.connection.isSecure());
195 * request to the (last) proxy.
211 //@@@ check for proxy in planned route?
230 * Tracks tunnelling of the connection to a chained proxy.
232 * request to the previous proxy.
234 * @param next the proxy to which the tunnel was established
    [all...]
  /external/curl/lib/
http_proxy.c 46 * Perform SSL initialization for HTTPS proxy. Sets
79 return result; /* wait for HTTPS proxy SSL initialization to complete */
84 /* for [protocol] tunneled through HTTP proxy */
92 /* We want "seamless" operations through HTTP proxy tunnel */
97 * proxy. After Curl_proxyCONNECT we have to set back the member to the
101 * if the proxy's CONNECT response is not instant.
106 connkeep(conn, "HTTP proxy CONNECT");
134 /* no HTTP tunnel proxy, just return */
208 infof(data, "Establish HTTP proxy tunnel to %s:%d\n",
229 /* Setup the proxy-authorization header, if any *
505 bool proxy = (k->httpcode == 407) ? TRUE : FALSE; local
    [all...]
  /external/google-breakpad/src/tools/linux/symupload/
sym_upload.cc 60 string proxy; member in struct:__anon22822
148 options->proxy,
181 fprintf(stderr, "-x:\t <host[:port]> Use HTTP proxy on given port\n");
182 fprintf(stderr, "-u:\t <user[:password]> Set proxy user and password\n");
202 options->proxy = optarg;
  /external/grpc-grpc/test/core/end2end/fixtures/
h2_ssl_proxy.cc 34 #include "test/core/end2end/fixtures/proxy.h"
39 grpc_end2end_proxy* proxy; member in struct:fullstack_secure_fixture_data
86 ffd->proxy = grpc_end2end_proxy_create(&proxy_def, client_args, server_args);
109 creds, grpc_end2end_proxy_get_client_target(ffd->proxy), client_args,
126 f->server, grpc_end2end_proxy_get_server_port(ffd->proxy), server_creds));
134 grpc_end2end_proxy_destroy(ffd->proxy);
  /external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
ProxyDetectorImpl.java 29 import java.net.Proxy;
46 // To validate this code: set up a local squid proxy instance, and
102 // auth_param basic realm Squid proxy-caching web server
111 // configure the proxy. For passwords, use java.net.Authenticator.setDefault().
137 host, addr, port, protocol, prompt, scheme, url, Authenticator.RequestorType.PROXY);
150 * @deprecated Use the standard Java proxy configuration instead with flags such as:
160 // We want an HTTPS proxy, which operates on the entire data stream (See IETF rfc2817).
164 * A proxy selector that uses the global {@link ProxySelector#getDefault()} and
165 * {@link ProxyDetectorImpl.AuthenticationProvider} to detect proxy parameters.
204 log.log(Level.WARNING, "Failed to get host for proxy lookup, proceeding without proxy", t)
235 Proxy proxy = proxies.get(0); local
    [all...]
  /external/guice/core/src/com/google/inject/internal/
SingletonScope.java 32 * proxy objects. There is no interface that allows user defined Scopes to create proxies, it is
48 * races as message is only generated when failure occurs on proxy object generation. Things get
78 * dependencies are detected, - returns circular proxy only when circular dependencies are
79 * detected, - aside from that, blocking synchronization is only used for proxy creation and
91 * guards constructionContext for all operations except proxy creation
193 // creating a proxy to satisfy circular dependency across several threads
201 T proxy = local
203 return proxy;
  /external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/
CheckedProviders.java 10 import java.lang.reflect.Proxy;
31 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
35 return invokeGet(proxy, method);
40 method, Arrays.toString(args), proxy));
43 protected abstract T invokeGet(Object proxy, Method method) throws Throwable;
57 protected T invokeGet(Object proxy, Method method) throws Throwable {
90 protected Object invokeGet(Object proxy, Method method) throws Throwable {
105 Object proxy = local
106 Proxy.newProxyInstance(
109 P proxyP = (P) proxy;
    [all...]
  /external/libbrillo/brillo/glib/
dbus.cc 17 bool CallPtrArray(const Proxy& proxy,
26 if (!::dbus_g_proxy_call(proxy.gproxy(), method, &Resetter(&error).lvalue(),
109 bool RetrieveProperties(const Proxy& proxy,
114 if (!::dbus_g_proxy_call(proxy.gproxy(), "GetAll", &Resetter(&error).lvalue(),
126 Proxy::Proxy()
132 Proxy::Proxy(const BusConnection& connection
221 Proxy proxy = brillo::dbus::Proxy(connection, local
    [all...]
dbus.h 67 friend class Proxy;
81 // \brief Proxy manages the ref-count for a ::DBusGProxy*.
83 // Proxy has reference semantics and represents a connection to on object on
84 // the bus. A proxy object is constructed with a connection to a bus, a name
88 class BRILLO_EXPORT Proxy {
92 Proxy();
96 Proxy(const BusConnection& connection,
102 // Equivalent to Proxy(connection, name, path, interface, false).
103 Proxy(const BusConnection& connection,
108 // Creates a peer proxy using dbus_g_proxy_new_for_peer
191 const Proxy& proxy() const { return proxy_; } function in class:brillo::dbus::MonitorConnection
213 const Proxy& proxy() const { return proxy_; } function in class:brillo::dbus::MonitorConnection
235 const Proxy& proxy() const { return proxy_; } function in class:brillo::dbus::MonitorConnection
262 const Proxy& proxy() const { return proxy_; } function in class:brillo::dbus::MonitorConnection
    [all...]
  /external/libchrome/mojo/public/cpp/bindings/tests/
binding_unittest.cc 443 test::PingServicePtr proxy; local
445 MakeRequest(&proxy));
450 proxy->Ping(run_loop.QuitClosure());
458 proxy->Ping(assert_not_reached);
461 // connection error on |proxy|.
463 proxy.set_connection_error_handler(run_loop.QuitClosure());
pickle_unittest.cc 71 void ExpectError(InterfacePtr<T>* proxy, const base::Closure& callback) {
72 proxy->set_connection_error_handler(callback);
159 InterfacePtr<ProxyType> proxy; local
162 ConvertInterfaceRequest<PicklePasser>(mojo::MakeRequest(&proxy)));
163 return proxy;
168 InterfacePtr<ProxyType> proxy; local
171 mojo::MakeRequest(&proxy)));
172 return proxy;
318 auto proxy = ConnectToChromiumService(); local
332 proxy->PassPickles(std::move(pickles)
350 auto proxy = ConnectToChromiumService(); local
397 auto proxy = ConnectToChromiumService(); local
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Address.java 19 import java.net.Proxy;
30 * this is the server's hostname and port. If an explicit proxy is requested (or
31 * {@linkplain Proxy#NO_PROXY no proxy} is explicitly requested), this also includes
32 * that proxy information. For secure connections the address also includes the
46 final Proxy proxy; field in class:Address
53 CertificatePinner certificatePinner, Authenticator authenticator, Proxy proxy,
79 this.proxy = proxy
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
SocksProxyTest.java 21 import java.net.Proxy;
47 @Test public void proxy() throws Exception { method in class:SocksProxyTest
52 .setProxy(socksProxy.proxy());
70 @Override public List<Proxy> select(URI uri) {
71 return Collections.singletonList(socksProxy.proxy());
90 // This testcase will fail if the target is resolved locally instead of through the proxy.
94 .setProxy(socksProxy.proxy());
  /external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/
Address.java 20 import java.net.Proxy;
31 * this is the server's hostname and port. If an explicit proxy is requested (or
32 * {@linkplain Proxy#NO_PROXY no proxy} is explicitly requested), this also includes
33 * that proxy information. For secure connections the address also includes the
48 final Proxy proxy; field in class:Address
55 CertificatePinner certificatePinner, Authenticator authenticator, Proxy proxy,
81 this.proxy = proxy
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowDisplayManagerGlobal.java 37 IDisplayManager proxy = ReflectionHelpers.createDelegatingProxy(IDisplayManager.class, myIDisplayManager); local
39 ClassParameter.from(IDisplayManager.class, proxy));
  /external/skia/gm/
flippity.cpp 111 auto proxy = sk_gpu_test::MakeTextureProxyFromData(context, false, kImageSize, kImageSize, local
114 if (!proxy) {
119 std::move(proxy), nullptr);
texturedomaineffect.cpp 88 sk_sp<GrTextureProxy> proxy; variable
96 proxy = proxyProvider->createMipMapProxyFromBitmap(copy);
98 proxy = proxyProvider->createTextureProxy(
101 if (!proxy) {
102 *errorMsg = "Failed to create proxy.";
110 textureMatrices.back().setRotate(45.f, proxy->width() / 2.f, proxy->height() / 2.f);
136 proxy, textureMatrices[tm],
  /external/skia/src/gpu/
GrRecordingContext.cpp 149 sk_sp<GrSurfaceProxy> proxy,
154 if (proxy->asRenderTargetProxy()) {
155 return this->drawingManager()->makeRenderTargetContext(std::move(proxy),
158 SkASSERT(proxy->asTextureProxy());
160 return this->drawingManager()->makeTextureContext(std::move(proxy), std::move(colorSpace));
173 sk_sp<GrTextureProxy> proxy; local
175 proxy = this->proxyProvider()->createProxy(format, dstDesc, origin, fit, isDstBudgeted);
178 proxy = this->proxyProvider()->createMipMapProxy(format, dstDesc, origin, isDstBudgeted);
180 if (!proxy) {
184 sk_sp<GrSurfaceContext> sContext = this->makeWrappedSurfaceContext(std::move(proxy),
    [all...]
GrTextureProducer.cpp 46 sk_sp<GrTextureProxy> proxy = GrCopyBaseMipMapToTextureProxy(context, inputProxy.get()); local
47 if (proxy) {
48 return proxy;
102 GrTextureProxy* proxy,
105 const SkIRect proxyBounds = SkIRect::MakeWH(proxy->width(), proxy->height());
109 const bool proxyIsExact = GrProxyProvider::IsFunctionallyExact(proxy);
111 // If the constraint rectangle contains the whole proxy then no need for a domain.
119 // proxy, and we aren't going to generate sample coords outside the constraint rect then we
161 // If we got here then: proxy is not exact, the coords are limited to th
    [all...]
  /external/skia/src/gpu/effects/
GrBicubicEffect.cpp 109 GrTextureProxy* proxy = processor.textureSampler(0).proxy(); local
110 GrTexture* texture = proxy->peekTexture();
116 fDomain.setData(pdman, bicubicEffect.domain(), proxy,
120 GrBicubicEffect::GrBicubicEffect(sk_sp<GrTextureProxy> proxy,
125 ModulateForSamplerOptFlags(proxy->config(),
127 , fCoordTransform(matrix, proxy.get())
128 , fDomain(proxy.get(), domain, modeX, modeY)
129 , fTextureSampler(std::move(proxy),
GrMagnifierEffect.cpp 83 GrSurfaceProxy& srcProxy = *_outer.textureSampler(0).proxy();
174 sk_sp<GrTextureProxy> proxy = d->textureProxy(0); local
185 auto effect = GrMagnifierEffect::Make(std::move(proxy),
  /external/skia/src/gpu/gradients/
GrGradientShader.cpp 59 sk_sp<GrTextureProxy> proxy = GrMakeCachedBitmapProxy( local
61 if (proxy == nullptr) {
66 return GrTextureGradientColorizer::Make(std::move(proxy));
  /external/skia/src/image/
SkImage_GpuYUVA.cpp 150 auto proxy = this->asTextureProxyRef(context); local
151 if (!proxy || GrMipMapped::kYes == fRGBProxy->mipMapped()) {
152 return proxy;
155 // need to generate mips for the proxy
156 if (auto mippedProxy = GrCopyBaseMipMapToTextureProxy(context, proxy.get())) {

Completed in 1813 milliseconds

1 2 34 5 6 7 8 91011>>