HomeSort by relevance Sort by last modified time
    Searched refs:proxy (Results 26 - 50 of 1577) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/curl/docs/cmdline-opts/
proxy-pass.d 1 Long: proxy-pass
3 Help: Pass phrase for the private key for HTTPS proxy
6 Same as --pass but used in HTTPS proxy context.
proxy-service-name.d 1 long: proxy-service-name
3 Help: SPNEGO proxy service name
6 This option allows you to change the service name for proxy negotiation.
proxy-ssl-allow-beast.d 1 Long: proxy-ssl-allow-beast
2 Help: Allow security flaw for interop for HTTPS proxy
5 Same as --ssl-allow-beast but used in HTTPS proxy context.
proxy-tlsauthtype.d 1 Long: proxy-tlsauthtype
3 Help: TLS authentication type for HTTPS proxy
6 Same as --tlsauthtype but used in HTTPS proxy context.
proxy-anyauth.d 1 Long: proxy-anyauth
2 Help: Pick any proxy authentication method
4 See-also: proxy proxy-basic proxy-digest
7 the given HTTP proxy. This might cause an extra request/response round-trip.
proxy-basic.d 1 Long: proxy-basic
2 Help: Use Basic authentication on the proxy
3 See-also: proxy proxy-anyauth proxy-digest
6 proxy. Use --basic for enabling HTTP Basic with a remote host. Basic is the
socks4.d 3 Help: SOCKS4 proxy on given host + port
6 Use the specified SOCKS4 proxy. If the port number is not specified, it is
9 This option overrides any previous use of --proxy, as they are mutually
12 Since 7.21.7, this option is superfluous since you can specify a socks4 proxy
13 with --proxy using a socks4:// protocol prefix.
15 Since 7.52.0, --preproxy can be used to specify a SOCKS proxy at the same time
16 --proxy is used with an HTTP/HTTPS proxy. In such a case curl first connects to
17 the SOCKS proxy and then connects (through SOCKS) to the HTTP or HTTPS proxy
    [all...]
socks4a.d 3 Help: SOCKS4a proxy on given host + port
6 Use the specified SOCKS4a proxy. If the port number is not specified, it is
9 This option overrides any previous use of --proxy, as they are mutually
12 Since 7.21.7, this option is superfluous since you can specify a socks4a proxy
13 with --proxy using a socks4a:// protocol prefix.
15 Since 7.52.0, --preproxy can be used to specify a SOCKS proxy at the same time
16 --proxy is used with an HTTP/HTTPS proxy. In such a case curl first connects to
17 the SOCKS proxy and then connects (through SOCKS) to the HTTP or HTTPS proxy
    [all...]
proxy-negotiate.d 1 Long: proxy-negotiate
2 Help: Use HTTP Negotiate (SPNEGO) authentication on the proxy
4 See-also: proxy-anyauth proxy-basic
7 with the given proxy. Use --negotiate for enabling HTTP Negotiate (SPNEGO)
proxy1.0.d 3 Help: Use HTTP/1.0 proxy on given port
5 Use the specified HTTP 1.0 proxy. If the port number is not specified, it is
8 The only difference between this and the HTTP proxy option --proxy, is that
9 attempts to use CONNECT through the proxy will specify an HTTP 1.0 protocol
socks5-hostname.d 3 Help: SOCKS5 proxy, pass host name to proxy
6 Use the specified SOCKS5 proxy (and let the proxy resolve the host name). If
9 This option overrides any previous use of --proxy, as they are mutually
13 hostname proxy with --proxy using a socks5h:// protocol prefix.
15 Since 7.52.0, --preproxy can be used to specify a SOCKS proxy at the same time
16 --proxy is used with an HTTP/HTTPS proxy. In such a case curl first connects t
    [all...]
  /external/curl/lib/
http_negotiate.h 28 CURLcode Curl_input_negotiate(struct connectdata *conn, bool proxy,
32 CURLcode Curl_output_negotiate(struct connectdata *conn, bool proxy);
http_ntlm.h 30 CURLcode Curl_input_ntlm(struct connectdata *conn, bool proxy,
34 CURLcode Curl_output_ntlm(struct connectdata *conn, bool proxy);
  /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...]
  /packages/services/Car/car-support-lib/src/android/support/car/
CarAppFocusManagerEmbedded.java 48 OnAppFocusChangedListenerProxy proxy; local
50 proxy = mChangeListeners.get(listener);
51 if (proxy == null) {
52 proxy = new OnAppFocusChangedListenerProxy(this, listener);
53 mChangeListeners.put(listener, proxy);
57 mManager.addFocusListener(proxy, appType);
65 OnAppFocusChangedListenerProxy proxy; local
67 proxy = mChangeListeners.get(listener);
68 if (proxy == null) {
72 mManager.removeFocusListener(proxy, appType)
77 OnAppFocusChangedListenerProxy proxy; local
90 OnAppFocusOwnershipCallbackProxy proxy; local
110 OnAppFocusOwnershipCallbackProxy proxy; local
130 OnAppFocusOwnershipCallbackProxy proxy; local
145 OnAppFocusOwnershipCallbackProxy proxy; local
    [all...]
  /external/javassist/src/main/javassist/util/proxy/
ProxyObject.java 16 package javassist.util.proxy;
19 * The interface implemented by proxy classes.
  /prebuilts/jdk/jdk8/darwin-x86/sample/jmx/jmx-scandir/test/com/sun/jmx/examples/scandir/
TestUtils.java 44 import java.lang.reflect.Proxy;
70 * Returns the ObjectName of the MBean that a proxy object
73 public static ObjectName getObjectName(Object proxy) {
74 if (!(proxy instanceof Proxy))
75 throw new IllegalArgumentException("not a "+Proxy.class.getName());
76 final Proxy p = (Proxy) proxy;
78 Proxy.getInvocationHandler(proxy)
    [all...]
  /prebuilts/jdk/jdk8/linux-x86/sample/jmx/jmx-scandir/test/com/sun/jmx/examples/scandir/
TestUtils.java 44 import java.lang.reflect.Proxy;
70 * Returns the ObjectName of the MBean that a proxy object
73 public static ObjectName getObjectName(Object proxy) {
74 if (!(proxy instanceof Proxy))
75 throw new IllegalArgumentException("not a "+Proxy.class.getName());
76 final Proxy p = (Proxy) proxy;
78 Proxy.getInvocationHandler(proxy)
    [all...]
  /external/wayland/src/
wayland-client.c 82 struct wl_proxy proxy; member in struct:wl_display
97 /* id of the proxy that caused the error. There's no warranty
98 * that the proxy is still valid. It's up to client how it will
231 struct wl_proxy *proxy; local
240 proxy = (struct wl_proxy *) closure->args[i].o;
241 if (proxy) {
242 if (proxy->flags & WL_PROXY_FLAG_DESTROYED)
245 proxy->refcount--;
246 if (!proxy->refcount)
247 free(proxy);
260 struct wl_proxy *proxy; local
331 struct wl_proxy *proxy; local
372 struct wl_proxy *proxy; local
386 struct wl_proxy *proxy; local
805 struct wl_proxy *proxy = object; local
831 struct wl_proxy *proxy; local
1156 struct wl_proxy *proxy; local
1194 struct wl_proxy *proxy; local
1218 struct wl_proxy *proxy; local
1273 struct wl_proxy *proxy; local
    [all...]
  /external/skia/src/gpu/
GrBitmapTextureMaker.cpp 41 sk_sp<GrTextureProxy> proxy; local
44 proxy = proxyProvider->findOrCreateProxyByUniqueKey(fOriginalKey, kTopLeft_GrSurfaceOrigin);
45 if (proxy && (!willBeMipped || GrMipMapped::kYes == proxy->mipMapped())) {
46 return proxy;
50 if (!proxy) {
52 proxy = proxyProvider->createMipMapProxyFromBitmap(fBitmap, dstColorSpace);
54 if (!proxy) {
55 proxy = GrUploadBitmapToTextureProxy(proxyProvider, fBitmap, dstColorSpace);
57 if (proxy) {
    [all...]
  /external/skqp/src/gpu/
GrBitmapTextureMaker.cpp 41 sk_sp<GrTextureProxy> proxy; local
44 proxy = proxyProvider->findOrCreateProxyByUniqueKey(fOriginalKey, kTopLeft_GrSurfaceOrigin);
45 if (proxy && (!willBeMipped || GrMipMapped::kYes == proxy->mipMapped())) {
46 return proxy;
50 if (!proxy) {
52 proxy = GrGenerateMipMapsAndUploadToTextureProxy(proxyProvider, fBitmap, dstColorSpace);
54 if (!proxy) {
55 proxy = GrUploadBitmapToTextureProxy(proxyProvider, fBitmap, dstColorSpace);
57 if (proxy) {
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Route.java 19 import java.net.Proxy;
25 * <li><strong>HTTP proxy:</strong> a proxy server may be explicitly
27 * proxy selector} is used. It may return multiple proxies to attempt.
29 * server or a proxy, opening a socket requires an IP address. The DNS
36 final Proxy proxy; field in class:Route
39 public Route(Address address, Proxy proxy, InetSocketAddress inetSocketAddress) {
43 if (proxy == null)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
ProxyTest.java 19 import java.net.Proxy;
29 * java.net.Proxy#Proxy(java.net.Proxy.Type, SocketAddress)
32 // test HTTP type proxy
33 Proxy proxy = new Proxy(Proxy.Type.HTTP, address); local
34 assertEquals(Proxy.Type.HTTP, proxy.type())
52 Proxy proxy = null; local
111 Proxy proxy = new Proxy(Proxy.Type.HTTP, address); local
170 Proxy proxy[] = { new Proxy(Proxy.Type.HTTP, address1), local
    [all...]
  /external/libmicrohttpd/src/spdy2http/
proxy.c 20 * @file proxy.c
159 struct Proxy
412 struct Proxy *proxy = (struct Proxy *)SPDY_get_cls_from_request(request); local
414 if(!store_in_buffer(buf, size, &proxy->received_body, &proxy->received_body_size))
420 proxy->receiving_done = !more;
426 if(proxy->is_curl_read_paused)
428 if(CURLE_OK != (ret = curl_easy_pause(proxy->curl_handle, CURLPAUSE_CONT))
447 struct Proxy *proxy = (struct Proxy *)cls; local
513 struct Proxy *proxy = (struct Proxy *)cls; local
531 struct Proxy *proxy = (struct Proxy *)userp; local
686 struct Proxy *proxy = (struct Proxy *)userp; local
731 struct Proxy *proxy = (struct Proxy *)userp; local
792 struct Proxy *proxy = (struct Proxy *)cls; local
846 struct Proxy *proxy; local
989 struct Proxy *proxy; local
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
ASTDbg.stg 50 proxy = DebugEventSocketProxy(self, adaptor=<if(TREE_PARSER)>self.input.getTreeAdaptor()<else>self._adaptor<endif>,
52 self.setDebugListener(proxy)
53 self.adaptor.setDebugListener(proxy)
54 self.input.setDebugListener(proxy)
55 #self.set<inputStreamType>(Debug<inputStreamType>(self.input, proxy))
56 proxy.handshake()

Completed in 822 milliseconds

12 3 4 5 6 7 8 91011>>