HomeSort by relevance Sort by last modified time
    Searched defs:Proxy (Results 1 - 25 of 100) sorted by null

1 2 3 4

  /external/javassist/src/main/javassist/tools/rmi/
Proxy.java 19 * An interface implemented by proxy classes.
23 public interface Proxy {
  /cts/tests/tests/net/src/android/net/cts/
ProxyTest.java 20 import android.net.Proxy;
26 new Proxy();
32 int defaultPort = Proxy.getDefaultPort();
33 if(null == Proxy.getDefaultHost()) {
  /external/clang/test/CodeCompletion/
member-access.cpp 23 class Proxy {
28 void test(const Proxy &p) {
  /external/chromium-trace/catapult/third_party/Paste/paste/
proxy.py 9 style of a typical proxy.
26 use = egg:Paste#proxy
46 'proxy-authenticate',
47 'proxy-authorization',
53 class Proxy(object):
152 return Proxy(
161 A proxy that sends the request just as it was given, including
285 Create a proxy that connects to a specific host, but does
  /libcore/ojluni/src/main/java/java/net/
Proxy.java 29 * This class represents a proxy setting, typically a type (http, socks) and
31 * A <code>Proxy</code> is an immutable object.
38 public class Proxy {
41 * Represents the proxy type.
47 * Represents a direct connection, or the absence of a proxy.
51 * Represents proxy for high level protocols such as HTTP or FTP.
55 * Represents a SOCKS (V4 or V5) proxy.
64 * A proxy setting that represents a <code>DIRECT</code> connection,
67 * proxy settings (like SOCKS):
69 * <code>Socket s = new Socket(Proxy.NO_PROXY);</code><br
    [all...]
  /external/libbrillo/brillo/glib/
dbus.cc 17 bool CallPtrArray(const Proxy& proxy,
26 if (!::dbus_g_proxy_call(proxy.gproxy(), method, &Resetter(&error).lvalue(),
109 bool RetrieveProperties(const Proxy& proxy,
114 if (!::dbus_g_proxy_call(proxy.gproxy(), "GetAll", &Resetter(&error).lvalue(),
126 Proxy::Proxy()
132 Proxy::Proxy(const BusConnection& connection
221 Proxy proxy = brillo::dbus::Proxy(connection, local
    [all...]
dbus.h 67 friend class Proxy;
81 // \brief Proxy manages the ref-count for a ::DBusGProxy*.
83 // Proxy has reference semantics and represents a connection to on object on
84 // the bus. A proxy object is constructed with a connection to a bus, a name
88 class BRILLO_EXPORT Proxy {
92 Proxy();
96 Proxy(const BusConnection& connection,
102 // Equivalent to Proxy(connection, name, path, interface, false).
103 Proxy(const BusConnection& connection,
108 // Creates a peer proxy using dbus_g_proxy_new_for_peer
191 const Proxy& proxy() const { return proxy_; } function in class:brillo::dbus::MonitorConnection
213 const Proxy& proxy() const { return proxy_; } function in class:brillo::dbus::MonitorConnection
235 const Proxy& proxy() const { return proxy_; } function in class:brillo::dbus::MonitorConnection
262 const Proxy& proxy() const { return proxy_; } function in class:brillo::dbus::MonitorConnection
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
Proxy.java 16 package org.mockito.cglib.proxy;
26 * <code>java.lang.reflect.Proxy</code> under JDK 1.2. There are some known
37 * @version $Id: Proxy.java,v 1.6 2004/06/24 21:15:19 herbyderby Exp $
39 public class Proxy implements Serializable {
56 protected Proxy(InvocationHandler h) {
62 private static class ProxyImpl extends Proxy {
68 public static InvocationHandler getInvocationHandler(Object proxy) {
69 if (!(proxy instanceof ProxyImpl)) {
70 throw new IllegalArgumentException("Object is not a proxy");
72 return ((Proxy)proxy).h
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
OldProxyTest.java 19 import java.net.Proxy;
28 Proxy proxy = new Proxy(Proxy.Type.SOCKS, address); local
29 assertEquals(address, proxy.address());
32 new Proxy(Proxy.Type.SOCKS, null);
42 Proxy proxy1 = new Proxy(Proxy.Type.HTTP, address1)
61 Proxy proxy = new Proxy(Proxy.Type.HTTP, address); local
    [all...]
  /libcore/ojluni/src/main/java/sun/net/www/protocol/http/
AuthCacheValue.java 41 Proxy,
59 * Proxy or Server
69 * name of server/proxy
74 * portnumber of server/proxy
  /external/skia/include/core/
SkImageFilter.h 108 class Proxy {
110 virtual ~Proxy() {}
115 // Returns true if the proxy handled the filter itself. If this returns
122 class DeviceProxy : public Proxy {
129 // Returns true if the proxy handled the filter itself. If this returns
151 bool filterImageDeprecated(Proxy*, const SkBitmap& src, const Context&,
191 virtual bool filterImageGPUDeprecated(Proxy*, const SkBitmap& src, const Context&,
273 bool filterInputGPUDeprecated(int index, SkImageFilter::Proxy* proxy,
348 virtual bool onFilterImageDeprecated(Proxy*, const SkBitmap& src, const Context&
    [all...]
  /frameworks/base/core/java/android/os/storage/
IMountShutdownObserver.java 42 * generating a proxy if needed.
52 return new IMountShutdownObserver.Stub.Proxy(obj);
79 private static class Proxy implements IMountShutdownObserver {
82 Proxy(IBinder remote) {
IObbActionListener.java 43 * generating a proxy if needed.
53 return new IObbActionListener.Stub.Proxy(obj);
84 private static class Proxy implements IObbActionListener {
87 Proxy(IBinder remote) {
IMountServiceListener.java 43 * generating a proxy if needed.
53 return new IMountServiceListener.Stub.Proxy(obj);
127 private static class Proxy implements IMountServiceListener {
130 Proxy(IBinder remote) {
IMountService.java 39 private static class Proxy implements IMountService {
42 Proxy(IBinder remote) {
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ProxyTest.java 24 import java.lang.reflect.Proxy;
34 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
40 * Make sure the proxy's class loader fails if it cannot see the class
50 Proxy.newProxyInstance(loaderB, interfacesA, returnHandler);
64 Object proxy = Proxy.newProxyInstance(loaderA, interfacesA, invocationHandlerB); local
65 assertEquals(loaderA, proxy.getClass().getClassLoader());
66 assertEquals("foo", proxy.getClass().getMethod("echo", String.class).invoke(proxy, "foo"));
71 Proxy.newProxyInstance(loader, new Class[] {ReturnsInt.class, ReturnsFloat.class}
404 Object proxy = Proxy.newProxyInstance(cl, interfaces, new InvocationHandler() { local
    [all...]
  /frameworks/base/core/java/android/net/
Proxy.java 33 * A convenience class for accessing the user and default proxy
36 public final class Proxy {
38 private static final String TAG = "Proxy";
43 * Used to notify an app that's caching the proxy that either the default
44 * connection has changed or any connection's proxy has changed. The new
45 * proxy should be queried using {@link ConnectivityManager#getDefaultProxy()}.
53 * It describes the new proxy being used (as a {@link ProxyInfo} object).
54 * @deprecated Because {@code PROXY_CHANGE_ACTION} is sent whenever the proxy
58 * to get the proxy for the Network(s) they are using.
100 * Return the proxy object to be used for the URL given as parameter
134 java.net.Proxy proxy = getProxy(ctx, null); local
151 java.net.Proxy proxy = getProxy(ctx, null); local
    [all...]
  /frameworks/av/include/private/media/
AudioTrackShared.h 134 friend class Proxy;
200 // Proxy for shared memory control block, to isolate callers from needing to know the details.
203 class Proxy : public RefBase {
205 Proxy(audio_track_cblk_t* cblk, void *buffers, size_t frameCount, size_t frameSize, bool isOut,
207 virtual ~Proxy() { }
235 // Proxy seen by AudioTrack client and AudioRecord client
236 class ClientProxy : public Proxy {
272 // DEAD_OBJECT Server has died or invalidated, caller should destroy this proxy and re-create.
345 // is initialized when the server proxy created. A local zero timestamp
353 // Proxy used by AudioTrack client, which also includes AudioFlinger::PlaybackThread::OutputTrac
    [all...]
  /libcore/ojluni/src/main/java/java/lang/reflect/
Proxy.java 50 * {@code Proxy} provides static methods for creating dynamic proxy
52 * dynamic proxy classes created by those methods.
54 * <p>To create a proxy for some interface {@code Foo}:
57 * Class proxyClass = Proxy.getProxyClass(
65 * Foo f = (Foo) Proxy.newProxyInstance(Foo.class.getClassLoader(),
70 * <p>A <i>dynamic proxy class</i> (simply referred to as a <i>proxy
75 * A <i>proxy interface</i> is such an interface that is implemented
76 * by a proxy class
    [all...]
  /external/libmicrohttpd/src/examples/
mhd2spdy_structures.h 67 struct Proxy;
75 struct Proxy *proxies_head;
76 struct Proxy *proxies_tail;
103 struct Proxy
110 struct Proxy *next;
111 struct Proxy *prev;
134 struct Proxy * proxy; member in struct:HTTP_URI
182 #define SPDY_HTTP_HEADER_PROXY_CONNECTION "proxy-connection"
286 free_proxy(struct Proxy *proxy)
    [all...]
  /frameworks/av/media/libmedia/
AudioTrackShared.cpp 59 Proxy::Proxy(audio_track_cblk_t* cblk, void *buffers, size_t frameCount, size_t frameSize,
71 : Proxy(cblk, buffers, frameCount, frameSize, isOut, clientInServer)
617 : Proxy(cblk, buffers, frameCount, frameSize, isOut, clientInServer),
    [all...]
  /packages/services/Car/car-support-lib/src/android/support/car/app/
CarActivity.java 52 public abstract static class Proxy {
114 private final Proxy mProxy;
119 public CarActivity(Proxy proxy, Context context, Car car) {
120 mProxy = proxy;
  /external/iproute2/doc/
ip-cref.tex 883 \paragraph{See also:} Appendix~\ref{PROXY-NEIGH}, p.\pageref{PROXY-NEIGH}
884 describes how to manage proxy ARP/NDISC with the \verb|ip| utility.
    [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...]
  /prebuilts/sdk/current/support/customtabs/libs/
android-support-customtabs.jar 

Completed in 939 milliseconds

1 2 3 4