HomeSort by relevance Sort by last modified time
    Searched defs:proxy (Results 126 - 150 of 420) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/tools/common/cglib/
cglib-2.2.3.jar 
cglib-nodep-2.2.3.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-swing.jar 
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/
ObjectStore.java 43 import java.lang.reflect.Proxy;
199 Object proxy = Proxy.newProxyInstance(getClass().getClassLoader(), new Class[]{ type }, ro); local
201 return (T) proxy;
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
OkHttpClient.java 30 import java.net.Proxy;
168 private Proxy proxy; field in class:OkHttpClient
202 this.proxy = okHttpClient.proxy;
285 * Sets the HTTP proxy that will be used by connections created by this
287 * only honored when this proxy is null (which it is by default). To disable
288 * proxy use completely, call {@code setProxy(Proxy.NO_PROXY)}.
290 public OkHttpClient setProxy(Proxy proxy)
    [all...]
  /frameworks/av/media/libmedia/
IMediaRecorder.cpp 68 status_t setCamera(const sp<ICamera>& camera, const sp<ICameraRecordingProxy>& proxy)
70 ALOGV("setCamera(%p,%p)", camera.get(), proxy.get());
74 data.writeStrongBinder(IInterface::asBinder(proxy));
451 sp<ICameraRecordingProxy> proxy = local
453 reply->writeInt32(setCamera(camera, proxy));
  /frameworks/base/tools/aidl/
generate_java_binder.cpp 102 m->comment += " * generating a proxy if needed.\n */";
138 proxyType += ".Stub.Proxy";
173 // Proxy()
176 ctor->name = "Proxy";
384 // == the proxy method ===================================================
385 Method* proxy = new Method; local
386 proxy->comment = gather_comments(method->comments_token->extra);
387 proxy->modifiers = PUBLIC | OVERRIDE;
388 proxy->returnType = NAMES.Search(method->type.type.data);
389 proxy->returnTypeDimension = method->type.dimension
537 ProxyClass* proxy = new ProxyClass( local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
ProxySelectorTest.java 21 import java.net.Proxy;
112 // no proxy, return a proxyList only contains NO_PROXY
114 assertProxyEquals(proxyList, Proxy.NO_PROXY);
116 // set http proxy
119 // set https proxy
122 // set ftp proxy
125 // set socks proxy
130 assertProxyEquals(proxyList, Proxy.Type.HTTP, HTTP_PROXY_HOST, HTTP_PROXY_PORT);
133 assertProxyEquals(proxyList, Proxy.Type.HTTP, HTTPS_PROXY_HOST, HTTPS_PROXY_PORT);
136 assertProxyEquals(proxyList, Proxy.Type.HTTP, FTP_PROXY_HOST, FTP_PROXY_PORT)
527 Proxy proxy = new Proxy(type, sa); local
    [all...]
  /libcore/luni/src/main/java/libcore/net/url/
FtpURLConnection.java 29 import java.net.Proxy;
96 private Proxy proxy; field in class:FtpURLConnection
98 private Proxy currentProxy;
138 * @param proxy
140 protected FtpURLConnection(URL url, Proxy proxy) throws IOException {
142 this.proxy = proxy;
175 // Use system-wide ProxySelect to select proxy list
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/beans/
PropertyChangeSupportTest.java 202 PropertyChangeListenerProxy proxy = new PropertyChangeListenerProxy("a", listener); local
203 support.addPropertyChangeListener("b", proxy);
205 // this proxy sets us up to receive 'b' events
211 // this proxy sets us up to receive 'a' events
269 PropertyChangeListenerProxy proxy = (PropertyChangeListenerProxy) listener; local
270 return proxy.getPropertyName() + " to " + describe(proxy.getListener());
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/iterator/
iterator_facade.hpp 175 // Dereferencing must return a proxy so that both *r++ = o and
264 // If *r++ returns a proxy (as required if r is writable but not
265 // multipass), this sort of expression will fail unless the proxy
268 // even if r++ returns a proxy, *r++ will only return a proxy if
269 // *r also returns a proxy.
274 // A proxy is only needed for readable iterators
298 // returning a proxy object containing an instance of the reference object.
300 struct operator_arrow_dispatch // proxy references
302 struct proxy struct in struct:boost::detail::operator_arrow_dispatch
304 explicit proxy(Reference const & x) : m_ref(x) {} function in struct:boost::detail::operator_arrow_dispatch::proxy
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_fileio.py 10 from weakref import proxy namespace
34 p = proxy(self.f)
test_functools.py 5 from weakref import proxy namespace
136 p = proxy(f)
test_weakset.py 3 from weakref import proxy, ref, WeakSet namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_fileio.py 10 from weakref import proxy namespace
34 p = proxy(self.f)
test_functools.py 5 from weakref import proxy namespace
136 p = proxy(f)
test_weakset.py 3 from weakref import proxy, ref, WeakSet namespace
  /prebuilts/devtools/tools/lib/
cglib-nodep-3.1.jar 
  /prebuilts/tools/common/m2/repository/cglib/cglib-nodep/3.1/
cglib-nodep-3.1.jar 
  /prebuilts/tools/common/m2/repository/cglib/cglib-nodep/2.2.2/
cglib-nodep-2.2.2.jar 
  /external/apache-harmony/support/src/test/java/tests/support/
Support_HttpServer.java 72 private boolean proxy = false; field in class:Support_HttpServer
282 // redirection to a proxy passes an absolute URI to the
283 // proxy server
395 if (!proxy) {
396 print(os, "HTTP/1.1 " + 305 + " Use Proxy\r\n");
400 print(os, "\r\nNOT PROXY");
514 * Sets the proxy.
516 * @param proxy The proxy to set
518 public void setProxy(boolean proxy) {
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
MethodInterceptorGenerator.java 16 package org.mockito.cglib.proxy;
41 TypeUtils.parseType("org.mockito.cglib.proxy.MethodProxy");
43 TypeUtils.parseType("org.mockito.cglib.proxy.MethodInterceptor");
81 return impl.getName() + "$Proxy";
  /external/netcat/
netcat.c 78 char *Pflag; /* Proxy username */
86 int xflag; /* Socks proxy */
131 char *proxy; local
157 socksv = -1; /* HTTP proxy CONNECT */
163 errx(1, "unsupported proxy protocol");
236 if ((proxy = strdup(optarg)) == NULL)
342 errx(1, "no proxy support for UDP mode");
345 errx(1, "no proxy support for listen");
348 errx(1, "no proxy support for unix sockets");
350 /* XXX IPv6 transport to proxy would probably work *
    [all...]
  /external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/internal/huc/
HttpURLConnectionImpl.java 48 import java.net.Proxy;
477 * <li>A specific proxy was explicitly configured for this connection.
478 * <li>The response has already been retrieved, and a proxy was {@link
486 Proxy proxy = route != null local
489 return proxy != null && proxy.type() != Proxy.Type.DIRECT;
  /external/v8/src/
scopes.h 153 VariableProxy* proxy = local
155 unresolved_.Add(proxy, zone_);
156 return proxy;
561 Variable* LookupRecursive(VariableProxy* proxy,
566 VariableProxy* proxy,

Completed in 335 milliseconds

1 2 3 4 56 7 8 91011>>