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

1 2 3 4 5 6

  /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) {
  /frameworks/support/lifecycle/compiler/src/tests/test-data/
InheritanceOk1.java 32 class Proxy extends Base1 {
35 class Derived1 extends Proxy {
41 class Derived2 extends Proxy {
  /art/test/992-source-data/src/art/
Test992.java 19 import java.lang.reflect.Proxy;
38 doTest(Proxy.getProxyClass(Test992.class.getClassLoader(), Runnable.class));
42 if (k != null && Proxy.class.isAssignableFrom(k)) {
43 return String.format("Proxy of %s", Arrays.toString(k.getInterfaces()));
  /device/generic/goldfish/wifi/ipv6proxy/
proxy.h 29 class Proxy {
32 Proxy(std::string outerInterfaceName,
  /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...]
  /external/tensorflow/tensorflow/core/kernels/
strided_slice_op_impl.h 85 typedef typename proxy_type<Device, T>::type Proxy;
95 functor::Slice<Device, Proxy, NDIM>()(
97 result->bit_casted_shaped<Proxy, NDIM>(processing_dims),
98 context->input(0).bit_casted_tensor<Proxy, NDIM>(), begin_di, sizes_di);
108 functor::StridedSlice<Device, Proxy, NDIM>()(
110 result->bit_casted_shaped<Proxy, NDIM>(processing_dims),
111 context->input(0).bit_casted_tensor<Proxy, NDIM>(), begin_di, end_di,
134 typedef typename proxy_type<Device, T>::type Proxy;
135 functor::StridedSliceGrad<Device, Proxy, NDIM>()(
136 context->eigen_device<Device>(), result->bit_casted_tensor<Proxy, NDIM>()
    [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/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
Interface.java 38 * A proxy to a mojo interface. This is base class for all generated proxies. It implements the
42 public interface Proxy extends Interface {
44 * Class allowing to interact with the proxy itself.
53 * Unbinds the proxy and passes the handle. Can return null if the proxy is not bound or
54 * if the proxy is not over a message pipe.
83 * Returns the {@link Handler} object allowing to interact with the proxy itself.
89 * Base implementation of {@link Proxy}.
91 abstract class AbstractProxy implements Proxy {
95 protected static class HandlerImpl implements Proxy.Handler, ConnectionErrorHandler
370 P proxy = attachProxy(handle.getCore(), router); local
386 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 136 friend class Proxy;
202 // Proxy for shared memory control block, to isolate callers from needing to know the details.
205 class Proxy : public RefBase {
207 Proxy(audio_track_cblk_t* cblk, void *buffers, size_t frameCount, size_t frameSize, bool isOut,
209 virtual ~Proxy() { }
237 // Proxy seen by AudioTrack client and AudioRecord client
238 class ClientProxy : public Proxy {
274 // DEAD_OBJECT Server has died or invalidated, caller should destroy this proxy and re-create.
349 // is initialized when the server proxy created. A local zero timestamp
357 // 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)
658 : Proxy(cblk, buffers, frameCount, frameSize, isOut, clientInServer),
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/
RestrictedLockUtils.java     [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...]
  /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...]
  /prebuilts/misc/common/robolectric/android-all/
android-all-stubs.jar 
  /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...]

Completed in 1432 milliseconds

1 2 3 4 5 6