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

1 2 3 4 5

  /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) {
  /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} 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} connection,
67 * proxy settings (like SOCKS):
69 * {@code Socket s = new Socket(Proxy.NO_PROXY);
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/archives/
Proxy.java 34 public class Proxy extends ProxyFileDescriptorCallback {
40 Proxy(StrictJarFile file, ZipEntry entry) throws IOException {
  /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...]
  /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/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...]
  /external/fmtlib/fmt/
posix.h 101 // A proxy object to emulate a move constructor.
102 // It is private to make it impossible call operator Proxy directly.
103 struct Proxy {
109 BufferedFile(Proxy p) FMT_NOEXCEPT : file_(p.file) {}
117 BufferedFile &operator=(Proxy p) {
131 // Returns a proxy object for moving from a temporary:
133 operator Proxy() FMT_NOEXCEPT {
134 Proxy p = {file_};
207 // A proxy object to emulate a move constructor.
208 // It is private to make it impossible call operator Proxy directly
    [all...]
  /external/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
Interface.java 30 * A proxy to a mojo interface. This is base class for all generated proxies. It implements the
34 public interface Proxy extends Interface {
36 * Class allowing to interact with the proxy itself.
45 * Unbinds the proxy and passes the handle. Can return null if the proxy is not bound or
46 * if the proxy is not over a message pipe.
75 * Returns the {@link Handler} object allowing to interact with the proxy itself.
81 * Base implementation of {@link Proxy}.
83 abstract class AbstractProxy implements Proxy {
87 protected static class HandlerImpl implements Proxy.Handler, ConnectionErrorHandler
354 P proxy = attachProxy(handle.getCore(), router); local
370 P proxy = attachProxy(handles.first, 0); 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.
101 * Return the proxy object to be used for the URL given as parameter
136 java.net.Proxy proxy = getProxy(ctx, null); local
154 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 56 * {@code Proxy} provides static methods for creating dynamic proxy
58 * dynamic proxy classes created by those methods.
60 * <p>To create a proxy for some interface {@code Foo}:
63 * Class&lt;?&gt; proxyClass = Proxy.getProxyClass(Foo.class.getClassLoader(), Foo.class);
69 * Foo f = (Foo) Proxy.newProxyInstance(Foo.class.getClassLoader(),
74 * <p>A <i>dynamic proxy class</i> (simply referred to as a <i>proxy
79 * A <i>proxy interface</i> is such an interface that is implemented
80 * 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/libaudioclient/
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...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/
RestrictedLockUtils.java     [all...]
  /packages/services/Car/car-support-lib/src/android/support/car/app/
CarActivity.java 75 public abstract static class Proxy {
137 private final Proxy mProxy;
142 public CarActivity(Proxy proxy, Context context, Car car) {
143 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/
android-support-customtabs.jar 
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_descr.py     [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...]

Completed in 887 milliseconds

1 2 3 4 5