HomeSort by relevance Sort by last modified time
    Searched refs:Proxy (Results 176 - 200 of 331) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/go/darwin-x86/src/net/http/
readrequest_test.go 43 "Proxy-Connection: keep-alive\r\n\r\n" +
62 "Proxy-Connection": {"keep-alive"},
requestwrite_test.go 51 "Proxy-Connection": {"keep-alive"},
68 "Proxy-Connection: keep-alive\r\n\r\n",
78 "Proxy-Connection: keep-alive\r\n\r\n",
565 t.Errorf("Test Proxy %d, expecting:\n%s\nGot:\n%s\n", i, tt.WantProxy, sraw)
  /prebuilts/go/linux-x86/src/net/http/
readrequest_test.go 43 "Proxy-Connection: keep-alive\r\n\r\n" +
62 "Proxy-Connection": {"keep-alive"},
requestwrite_test.go 51 "Proxy-Connection": {"keep-alive"},
68 "Proxy-Connection: keep-alive\r\n\r\n",
78 "Proxy-Connection: keep-alive\r\n\r\n",
565 t.Errorf("Test Proxy %d, expecting:\n%s\nGot:\n%s\n", i, tt.WantProxy, sraw)
  /system/core/libappfuse/tests/
FuseBridgeLoopTest.cc 197 TEST_F(FuseBridgeLoopTest, Proxy) {
  /external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/
ThrowingProviderBinder.java 45 import java.lang.reflect.Proxy;
293 // don't bother binding the proxy type if this is in an invalid state.
296 private final P instance = interfaceType.cast(Proxy.newProxyInstance(
299 public Object invoke(Object proxy, Method method, Object[] args)
554 * The regular guice provider can throw it and the checked provider proxy extracts
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
MethodTest.java 23 import java.lang.reflect.Proxy;
610 @Override public Object invoke(Object proxy, Method method, Object[] args)
617 InterfaceWithDefault proxyWithDefaultMethod = (InterfaceWithDefault) Proxy.newProxyInstance(
623 // Check the proxy implements the default method.
  /libcore/luni/src/test/java/libcore/java/net/
SocketTest.java 28 import java.net.Proxy;
436 public List<Proxy> select(URI uri) {
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
InfiniteStreamWithLimitOpTest.java 39 import java.lang.reflect.Proxy;
278 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
295 return (Spliterator.OfLong) Proxy.newProxyInstance(this.getClass().getClassLoader(),
308 // Range is [0, Long.MAX_VALUE), splits are not SUBSIZED (proxy clears
320 // Range is [0, Integer.MAX_VALUE), splits are not SUBSIZED (proxy clears
332 // Range is [0, Long.MAX_VALUE), splits are not SUBSIZED (proxy clears
344 // Range is [0, Double.MAX_VALUE), splits are not SUBSIZED (proxy clears
  /frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/
RestrictedLockUtilsTest.java 57 private RestrictedLockUtils.Proxy mProxy;
  /frameworks/base/services/core/java/com/android/server/connectivity/
PacManager.java 66 private static final String ACTION_PAC_REFRESH = "android.net.proxy.PAC_REFRESH";
170 * Updates the PAC Manager with current Proxy information. This is called by
175 * @param proxy Proxy information that is about to be broadcast.
178 public synchronized boolean setCurrentProxyScriptUrl(ProxyInfo proxy) {
179 if (!Uri.EMPTY.equals(proxy.getPacFileUrl())) {
180 if (proxy.getPacFileUrl().equals(mPacUrl) && (proxy.getPort() > 0)) {
184 mPacUrl = proxy.getPacFileUrl();
217 URLConnection urlConnection = url.openConnection(java.net.Proxy.NO_PROXY)
    [all...]
  /development/apps/Development/src/com/android/development/
Connectivity.java 80 import java.net.Proxy;
767 conn = (HttpURLConnection) httpsUrl.openConnection(Proxy.NO_PROXY);
778 Proxy.NO_PROXY);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpEngine.java 40 import java.net.Proxy;
    [all...]
  /external/v8/src/
api.h 111 V(Proxy, JSProxy) \
151 static inline Local<Proxy> ToLocal(
304 MAKE_TO_LOCAL(ToLocal, JSProxy, Proxy)
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/
RestrictedLockUtils.java     [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
SerializationStressTest4.java 26 import java.lang.reflect.Proxy;
    [all...]
  /external/mesa3d/docs/
MESA_texture_array.spec 176 three-dimensional proxy texture, or PROXY_TEXTURE_2D_ARRAY_EXT for a
177 two-dimensional proxy array texture."
205 target may be either PROXY_TEXTURE_2D for a two-dimensional proxy
206 texture, PROXY_TEXTURE_1D_ARRAY_EXT for a one-dimensional proxy array
207 texture, or PROXY TEXTURE_CUBE_MAP for a cube map proxy texture in the
338 -- Section 3.8.11 "Texture State and Proxy State"
347 and two-dimensional array textures. Additionally, a single proxy image
348 array is maintained for the cube map texture. Each proxy image array
351 and intensity component resolutions. Proxy image arrays do not includ
    [all...]
  /frameworks/base/core/java/android/app/admin/
DevicePolicyManager.java 73 import java.net.Proxy;
643 * A String extra holding the proxy host for the wifi network in
653 * An int extra holding the proxy port for the wifi network in
663 * A String extra holding the proxy bypass for the wifi network in
673 * A String extra holding the proxy auto-config (PAC) URL for the wifi network in
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/httputil/
reverseproxy_test.go 5 // Reverse proxy tests.
55 if c := r.Header.Get("Proxy-Connection"); c != "" {
56 t.Errorf("handler got Proxy-Connection header value %q", c)
86 getReq.Header.Set("Proxy-Connection", "should be deleted")
135 t.Errorf("request to bad proxy = %v; want 502 StatusBadGateway", res.Status)
347 // http: proxy error: read tcp 127.0.0.1:44643: use of closed network connection
587 // causes the proxy to return StatusBadGateway, or StatusOK otherwise.
599 return fmt.Errorf("tried to by-pass proxy")
618 t.Fatalf("failed to reach proxy: %v", err)
630 out := "this call was relayed by the reverse proxy"
    [all...]
  /prebuilts/go/linux-x86/src/net/http/httputil/
reverseproxy_test.go 5 // Reverse proxy tests.
55 if c := r.Header.Get("Proxy-Connection"); c != "" {
56 t.Errorf("handler got Proxy-Connection header value %q", c)
86 getReq.Header.Set("Proxy-Connection", "should be deleted")
135 t.Errorf("request to bad proxy = %v; want 502 StatusBadGateway", res.Status)
347 // http: proxy error: read tcp 127.0.0.1:44643: use of closed network connection
587 // causes the proxy to return StatusBadGateway, or StatusOK otherwise.
599 return fmt.Errorf("tried to by-pass proxy")
618 t.Fatalf("failed to reach proxy: %v", err)
630 out := "this call was relayed by the reverse proxy"
    [all...]
  /external/doclava/src/com/google/doclava/
Doclava.java 33 import java.lang.reflect.Proxy;
    [all...]
  /libcore/ojluni/src/main/java/java/io/
ObjectStreamClass.java 38 import java.lang.reflect.Proxy;
108 /** true if represents dynamic proxy class */
447 isProxy = Proxy.isProxyClass(cl);
535 * Initializes class descriptor representing a proxy class.
554 "cannot bind proxy descriptor to a non-proxy class");
567 * Initializes class descriptor representing a non-proxy class.
594 "cannot bind non-proxy descriptor to a proxy class");
652 * Reads non-proxy class descriptor information from given input stream
    [all...]
  /libcore/ojluni/src/main/java/java/net/
SocksSocketImpl.java 51 /* true if the Proxy has been set programatically */
64 SocksSocketImpl(Proxy proxy) {
65 SocketAddress a = proxy.address();
136 * Provides the authentication machanism required by the proxy.
314 * connect to the SOCKS proxy and negotiate the access. If the proxy
351 * Android-changed: Removed code that tried to establish proxy connection if
URLStreamHandler.java 73 * made through the specified proxy; Protocol handlers that do not
74 * support proxying will ignore the proxy parameter and make a
81 * @param p the proxy through which the connection will be made.
82 * If direct connection is desired, Proxy.NO_PROXY
93 protected URLConnection openConnection(URL u, Proxy p) throws IOException {
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
maven-artifact-3.2.1.jar 

Completed in 1555 milliseconds

1 2 3 4 5 6 78 91011>>