/libcore/ojluni/src/main/java/java/net/ |
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/misc/common/robolectric/3.1.1/lib/ |
maven-settings-2.2.1.jar | |
/prebuilts/tools/common/m2/repository/org/apache/maven/maven-artifact/3.2.1/ |
maven-artifact-3.2.1.jar | |
/prebuilts/tools/common/m2/repository/org/apache/maven/maven-artifact/3.3.9/ |
maven-artifact-3.3.9.jar | |
/prebuilts/tools/common/m2/repository/org/apache/maven/maven-settings/2.0.9/ |
maven-settings-2.0.9.jar | |
/prebuilts/tools/common/m2/repository/org/apache/maven/maven-settings/2.2.1/ |
maven-settings-2.2.1.jar | |
/external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/ |
FactoryProvider2.java | 65 import java.lang.reflect.Proxy; 322 factory = factoryRawType.cast(Proxy.newProxyInstance( 430 + "Due to limitations with java.lang.reflect.Proxy, this is not allowed. " 739 public Object invoke(Object proxy, final Method method, final Object[] args) throws Throwable { 749 return proxy == args[0]; 751 return System.identityHashCode(proxy); [all...] |
/libcore/luni/src/test/java/libcore/java/lang/reflect/ |
ReflectionTest.java | 29 import java.lang.reflect.Proxy; 542 @Override public Object invoke(Object proxy, Method method, Object[] args) { 547 Object proxy = Proxy.newProxyInstance(getClass().getClassLoader(), local 549 assertSetEquals(proxy.getClass().getMethod("foo").getExceptionTypes(), 551 assertSetEquals(proxy.getClass().getMethod("foo", Void.class).getExceptionTypes());
|
/prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/ |
org.eclipse.ecf_3.2.0.v20130604-1622.jar | |
/prebuilts/go/darwin-x86/src/net/http/ |
transport.go | 32 "golang_org/x/net/proxy" 41 Proxy: ProxyFromEnvironment, 77 // The Transport will send CONNECT requests to a proxy for its own use 98 // Proxy specifies a function to return a proxy for a given 102 // The proxy type is determined by the URL scheme. "http" 106 // If Proxy is nil or returns a nil *URL, no proxy is used. 107 Proxy func(*Request) (*url.URL, error) 259 // ProxyFromEnvironment returns the URL of the proxy to use for [all...] |
/prebuilts/go/linux-x86/src/net/http/ |
transport.go | 32 "golang_org/x/net/proxy" 41 Proxy: ProxyFromEnvironment, 77 // The Transport will send CONNECT requests to a proxy for its own use 98 // Proxy specifies a function to return a proxy for a given 102 // The proxy type is determined by the URL scheme. "http" 106 // If Proxy is nil or returns a nil *URL, no proxy is used. 107 Proxy func(*Request) (*url.URL, error) 259 // ProxyFromEnvironment returns the URL of the proxy to use for [all...] |
/external/robolectric/v3/runtime/ |
android-all-4.3_r2-robolectric-0.jar | |
android-all-4.2.2_r1.2-robolectric-0.jar | |
/prebuilts/misc/common/robolectric/android-all/ |
android-all-4.3_r2-robolectric-0.jar | |
android-all-4.2.2_r1.2-robolectric-0.jar | |
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
URLConnectionTest.java | 41 import java.net.Proxy; 305 // Use a misconfigured proxy to guarantee that the request is retried. 693 MockResponse mockResponse = new MockResponse().setBody("this response comes via a proxy"); 698 assertContent("this response comes via a proxy", connection); 806 // https should not use http proxy 830 * We weren't honoring all of the appropriate proxy system properties when 843 * through a proxy. http://b/3097277 [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_descr.py | [all...] |
/external/python/cpython2/Lib/test/ |
test_descr.py | [all...] |
/external/python/cpython3/Lib/test/ |
test_descr.py | [all...] |
/libcore/ojluni/src/main/java/java/io/ |
ObjectInputStream.java | 33 import java.lang.reflect.Proxy; 640 * Returns a proxy class that implements the interfaces named in a proxy 642 * data from the stream along with the descriptors for dynamic proxy 644 * interfaces and the proxy class. 646 * <p>This method is called exactly once for each unique proxy class 658 * <code>Proxy.getProxyClass</code> with the list of <code>Class</code> 671 * <code>Proxy.getProxyClass</code>; if non-public interfaces are present, 675 * If <code>Proxy.getProxyClass</code> throws an 681 * deserialized in the proxy class descripto [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_descr.py | [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_descr.py | [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_descr.py | [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_descr.py | [all...] |
/external/python/cpython3/Lib/unittest/test/testmock/ |
testpatch.py | 26 class Proxy(object): 34 Proxy.__setattr__ = __setattr__ 35 Proxy.__delattr__ = __delattr__ 36 return Proxy() 828 proxy = _get_proxy(thing) variable in class:PatchTest.test_get_only_proxy.SomethingElse 830 @patch.object(proxy, 'foo', 'bar') 832 self.assertEqual(proxy.foo, 'bar') 834 self.assertEqual(proxy.foo, 'foo') 836 self.assertNotIn('foo', proxy.__dict__) 846 proxy = _get_proxy(Something, get_only=False variable in class:PatchTest.test_get_set_delete_proxy.SomethingElse [all...] |