/external/guice/core/src/com/google/inject/ |
Binder.java | 32 import java.lang.reflect.Proxy; 475 * Prevents Guice from constructing a {@link Proxy} when a circular dependency
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
OkHttpClient.java | 28 import java.net.Proxy; 122 private Proxy proxy; field in class:OkHttpClient 156 this.proxy = okHttpClient.proxy; 239 * Sets the HTTP proxy that will be used by connections created by this 241 * only honored when this proxy is null (which it is by default). To disable 242 * proxy use completely, call {@code setProxy(Proxy.NO_PROXY)}. 244 public OkHttpClient setProxy(Proxy proxy) [all...] |
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/io/ |
RealConnection.java | 44 import java.net.Proxy; 98 Proxy proxy = route.getProxy(); local 109 rawSocket = proxy.type() == Proxy.Type.DIRECT || proxy.type() == Proxy.Type.HTTP 111 : new Socket(proxy); 255 * To make an HTTPS connection over an HTTP proxy, send an unencrypted 256 * CONNECT request to create the proxy connection. This may need to b [all...] |
/libcore/support/src/test/java/tests/http/ |
MockWebServer.java | 29 import java.net.Proxy; 93 public Proxy toProxyAddress() { 94 return new Proxy(Proxy.Type.HTTP, new InetSocketAddress(getHostName(), getPort()));
|
/prebuilts/go/darwin-x86/src/net/http/ |
status.go | 97 StatusUseProxy: "Use Proxy", 108 StatusProxyAuthRequired: "Proxy Authentication Required",
|
/prebuilts/go/linux-x86/src/net/http/ |
status.go | 97 StatusUseProxy: "Use Proxy", 108 StatusProxyAuthRequired: "Proxy Authentication Required",
|
/external/harfbuzz_ng/src/ |
hb-ot-layout.cc | [all...] |
hb-ot-map-private.hh | 121 template <typename Proxy> 122 HB_INTERNAL inline void apply (const Proxy &proxy,
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/ |
SocketTest.java | 26 import java.net.Proxy; 245 // The Proxy will not impact on the bind operation. It can be assigned 247 Proxy proxy = new Proxy(Proxy.Type.SOCKS, new InetSocketAddress( local 249 Socket socket = new Socket(proxy); 630 * java.net.Socket#Socket(Proxy) 636 Proxy proxy1 = new Proxy(Proxy.Type.HTTP, addr1) [all...] |
/art/test/004-JniTest/src/ |
Main.java | 19 import java.lang.reflect.Proxy; 228 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { 235 SimpleInterface proxy = local 236 (SimpleInterface) Proxy.newProxyInstance(SimpleInterface.class.getClassLoader(), 241 if (testGetMethodID(proxy.getClass()) == 0) {
|
/art/test/005-annotations/src/android/test/anno/ |
TestAnnotations.java | 23 import java.lang.reflect.Proxy; 85 System.out.println(" aff: " + aff + " / " + Proxy.isProxyClass(aff.getClass()));
|
/art/test/044-proxy/src/ |
WrappedThrow.java | 21 import java.lang.reflect.Proxy; 25 * Create a Proxy class that blah. 31 Object proxy; local 34 proxy = Proxy.newProxyInstance(WrappedThrow.class.getClassLoader(), 42 InterfaceW1 if1 = (InterfaceW1) proxy; 43 InterfaceW2 if2 = (InterfaceW2) proxy; 176 * Invocation handler for our proxy class. 186 * This is called when anything gets invoked in the proxy object. 188 public Object invoke(Object proxy, Method method, Object[] args [all...] |
ReturnsAndArgPassing.java | 56 public Object invoke(Object proxy, Method method, Object[] args) { 57 check(proxy instanceof Proxy); 60 // Check for moving GC bugs in proxy stubs. 100 (MyInterface)Proxy.newProxyInstance(ReturnsAndArgPassing.class.getClassLoader(), 443 (MyInterface)Proxy.newProxyInstance(ReturnsAndArgPassing.class.getClassLoader(),
|
/art/test/098-ddmc/src/ |
Main.java | 19 import java.lang.reflect.Proxy; 97 public Object invoke(Object proxy, Method method, Object[] args) { 102 return Proxy.newProxyInstance(Main.class.getClassLoader(),
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
ConnectionPoolTest.java | 22 import java.net.Proxy; 208 return new Route(address, Proxy.NO_PROXY,
|
/frameworks/av/services/audioflinger/ |
PlaybackTracks.h | 257 virtual status_t obtainBuffer(Proxy::Buffer* buffer, 259 virtual void releaseBuffer(Proxy::Buffer* buffer); 261 void setPeerProxy(PatchProxyBufferProvider *proxy) { mPeerProxy = proxy; }
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
ObjectStreamClassTest.java | 34 import java.lang.reflect.Proxy; 154 Class<?> proxyClass = Proxy.getProxyClass(this.getClass() 160 assertEquals("Proxy classes should have zero serialVersionUID", 0, 163 assertEquals("Proxy classes should have no serialized fields", 0,
|
/libcore/luni/src/test/java/libcore/java/net/ |
OldURLStreamHandlerTest.java | 23 import java.net.Proxy; 200 @Override public URLConnection openConnection(URL u, Proxy p) throws IOException {
|
OldSocketTest.java | 29 import java.net.Proxy; 886 Proxy proxy = new Proxy(Proxy.Type.SOCKS, new InetSocketAddress("127.0.0.1", 0)); local [all...] |
/libcore/ojluni/src/main/java/sun/net/ftp/ |
FtpClient.java | 206 * Set the {@code Proxy} to be used for the next connection. 210 * @param p the {@code Proxy} to use, or {@code null} for no proxy. 213 public abstract FtpClient setProxy(Proxy p); 216 * Get the proxy of this FtpClient 218 * @return the {@code Proxy}, this client is using, or {@code null} 220 * @see #setProxy(Proxy) 222 public abstract Proxy getProxy(); [all...] |
/libcore/ojluni/src/main/java/java/net/ |
URL.java | [all...] |
/packages/services/Mms/src/com/android/mms/service/ |
MmsHttpClient.java | 46 import java.net.Proxy; 104 * @param isProxySet Is there a proxy for the MMSC 105 * @param proxyHost The proxy host 106 * @param proxyPort The proxy port 117 + (isProxySet ? (", proxy=" + proxyHost + ":" + proxyPort) : "") 122 Proxy proxy = Proxy.NO_PROXY; local 124 proxy = new Proxy(Proxy.Type.HTTP [all...] |
/frameworks/base/config/ |
preloaded-classes | 43 android.accounts.IAccountManager$Stub$Proxy 190 android.app.IActivityManager$Stub$Proxy 195 android.app.IAlarmManager$Stub$Proxy 198 android.app.IAppTask$Stub$Proxy 205 android.app.INotificationManager$Stub$Proxy 212 android.app.IUiModeManager$Stub$Proxy 217 android.app.IWallpaperManager$Stub$Proxy 380 android.app.admin.IDevicePolicyManager$Stub$Proxy 405 android.app.backup.IBackupManager$Stub$Proxy 408 android.app.job.IJobCallback$Stub$Proxy [all...] |
/art/test/912-classes/src-art/art/ |
Test912.java | 21 import java.lang.reflect.Proxy; 331 Proxy.getProxyClass(Main.class.getClassLoader(), new Class[] { Comparable.class, I0.class }); 468 return Proxy.getProxyClass(Test912.class.getClassLoader(), input); 471 // Need this for the proxy naming.
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/ |
Platform.java | 29 import java.lang.reflect.Proxy; 376 Object provider = Proxy.newProxyInstance(Platform.class.getClassLoader(), 395 (JettyNegoProvider) Proxy.getInvocationHandler(getMethod.invoke(null, socket)); 424 @Override public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
|