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

1 2 3

  /external/javassist/src/main/javassist/tools/rmi/
Proxy.java 19 * An interface implemented by proxy classes.
23 public interface Proxy {
  /external/chromium_org/cc/trees/
proxy.cc 5 #include "cc/trees/proxy.h"
12 base::SingleThreadTaskRunner* Proxy::MainThreadTaskRunner() const {
16 bool Proxy::HasImplThread() const { return !!impl_task_runner_.get(); }
18 base::SingleThreadTaskRunner* Proxy::ImplThreadTaskRunner() const {
22 bool Proxy::IsMainThread() const {
37 bool Proxy::IsImplThread() const {
50 void Proxy::SetCurrentThreadIsImplThread(bool is_impl_thread) {
55 bool Proxy::IsMainThreadBlocked() const {
64 void Proxy::SetMainThreadBlocked(bool is_main_thread_blocked) {
69 Proxy::Proxy(scoped_refptr<base::SingleThreadTaskRunner> impl_task_runner
    [all...]
proxy.h 34 class CC_EXPORT Proxy {
49 virtual ~Proxy();
81 // Must be called before using the proxy.
83 virtual void Stop() = 0; // Must be called before deleting the proxy.
101 explicit Proxy(
116 DISALLOW_COPY_AND_ASSIGN(Proxy);
122 explicit DebugScopedSetMainThreadBlocked(Proxy* proxy) : proxy_(proxy) {
131 Proxy* proxy_
    [all...]
  /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_org/third_party/skia/include/core/
SkImageFilter.h 76 class Proxy {
78 virtual ~Proxy() {};
81 // returns true if the proxy can handle this filter natively
83 // returns true if the proxy handled the filter itself. if this returns
103 bool filterImage(Proxy*, const SkBitmap& src, const Context&,
131 virtual bool filterImageGPU(Proxy*, const SkBitmap& src, const Context&,
183 bool getInputResultGPU(SkImageFilter::Proxy* proxy, const SkBitmap& src, const Context&,
238 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&,
266 bool applyCropRect(const Context&, Proxy* proxy, const SkBitmap& src, SkIPoint* srcOffset
    [all...]
  /external/skia/include/core/
SkImageFilter.h 76 class Proxy {
78 virtual ~Proxy() {};
81 // returns true if the proxy can handle this filter natively
83 // returns true if the proxy handled the filter itself. if this returns
103 bool filterImage(Proxy*, const SkBitmap& src, const Context&,
131 virtual bool filterImageGPU(Proxy*, const SkBitmap& src, const Context&,
183 bool getInputResultGPU(SkImageFilter::Proxy* proxy, const SkBitmap& src, const Context&,
238 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&,
266 bool applyCropRect(const Context&, Proxy* proxy, const SkBitmap& src, SkIPoint* srcOffset
    [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...]
  /frameworks/base/tests/CoreTests/android/core/
ProxyTest.java 22 import android.net.Proxy;
26 * Proxy tests
38 String proxyHost = Proxy.getHost(mContext);
39 int proxyPort = Proxy.getPort(mContext);
54 assertEquals(mHttpHost, Proxy.getPreferredHttpHost(mContext, null));
55 assertEquals(mHttpHost, Proxy.getPreferredHttpHost(mContext, ""));
56 assertEquals(mHttpHost, Proxy.getPreferredHttpHost(mContext, "bad:"));
57 assertEquals(mHttpHost, Proxy.getPreferredHttpHost(mContext, "bad"));
58 assertEquals(mHttpHost, Proxy.getPreferredHttpHost(mContext, "bad:\\"));
59 assertEquals(mHttpHost, Proxy.getPreferredHttpHost(mContext, "bad://#"))
    [all...]
  /libcore/luni/src/main/java/java/net/
Proxy.java 19 * This class represents proxy server settings. A created instance of {@code
20 * Proxy} stores a type and an address and is immutable. There are three types
27 public class Proxy {
30 * Represents the proxy type setting {@code Proxy.Type.DIRECT}. It tells
31 * protocol handlers that there is no proxy to be used. The address is set
34 public static final Proxy NO_PROXY = new Proxy();
36 private Proxy.Type type;
41 * Creates a new {@code Proxy} instance. {@code SocketAddress} must NOT b
    [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/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
DOMBreakpointsSidebarPane.js 390 * @return {!WebInspector.DOMBreakpointsSidebarPane.Proxy}
394 var proxy = new WebInspector.DOMBreakpointsSidebarPane.Proxy(this, panel);
397 this._proxies.push(proxy);
398 return proxy;
416 WebInspector.DOMBreakpointsSidebarPane.Proxy = function(pane, panel)
418 WebInspector.View._assert(!pane.titleElement.firstChild, "Cannot create proxy for a sidebar pane with a toolbar");
430 WebInspector.DOMBreakpointsSidebarPane.Proxy.prototype = {
  /external/chromium_org/chrome/browser/local_discovery/
service_discovery_client_mdns.cc 20 class ServiceDiscoveryClientMdns::Proxy {
22 typedef base::WeakPtr<Proxy> WeakPtr;
24 explicit Proxy(ServiceDiscoveryClientMdns* client)
31 virtual ~Proxy() {
42 // Run callback using this method to abort callback if instance of |Proxy|
76 base::WeakPtrFactory<Proxy> weak_ptr_factory_;
78 DISALLOW_COPY_AND_ASSIGN(Proxy);
121 class ProxyBase : public ServiceDiscoveryClientMdns::Proxy, public T {
123 typedef base::WeakPtr<Proxy> WeakPtr;
127 : Proxy(client)
    [all...]
  /frameworks/base/core/java/android/os/storage/
IMountServiceListener.java 43 * generating a proxy if needed.
53 return new IMountServiceListener.Stub.Proxy(obj);
92 private static class Proxy implements IMountServiceListener {
95 Proxy(IBinder remote) {
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) {
IMountService.java 36 private static class Proxy implements IMountService {
39 Proxy(IBinder remote) {
    [all...]
  /frameworks/av/include/private/media/
AudioTrackShared.h 85 friend class Proxy;
143 // Proxy for shared memory control block, to isolate callers from needing to know the details.
146 class Proxy : public RefBase {
148 Proxy(audio_track_cblk_t* cblk, void *buffers, size_t frameCount, size_t frameSize, bool isOut,
150 virtual ~Proxy() { }
176 // Proxy seen by AudioTrack client and AudioRecord client
177 class ClientProxy : public Proxy {
213 // DEAD_OBJECT Server has died or invalidated, caller should destroy this proxy and re-create.
268 // Proxy used by AudioTrack client, which also includes AudioFlinger::PlaybackThread::OutputTrack
334 // Proxy used by AudioRecord clien
    [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 42 * A convenience class for accessing the user and default proxy
45 public final class Proxy {
49 private static final String TAG = "Proxy";
54 * Used to notify an app that's caching the default connection proxy
55 * that either the default connection or its proxy has changed.
58 * <li><em>EXTRA_PROXY_INFO</em> - The ProxyProperties for the proxy. Non-null,
59 * though if the proxy is undefined the host string
69 * It describes the new proxy being used (as a {@link ProxyInfo} object).
111 * Return the proxy object to be used for the URL given as parameter.
112 * @param ctx A Context used to get the settings for the proxy host
145 java.net.Proxy proxy = getProxy(ctx, null); local
162 java.net.Proxy proxy = getProxy(ctx, null); local
    [all...]
  /libcore/libart/src/main/java/java/lang/reflect/
Proxy.java 31 * {@code Proxy} defines methods for creating dynamic proxy classes and instances.
32 * A proxy class implements a declared set of interfaces and delegates method
38 public class Proxy implements Serializable {
73 private Proxy() {
77 * Constructs a new {@code Proxy} instance with the specified invocation
81 * the invocation handler for the newly created proxy
83 protected Proxy(InvocationHandler h) {
96 * the class loader that will define the proxy class
99 * interface that will be implemented by the returned proxy
138 Class<?> proxy = loader.proxyCache.get(interfaceList); local
    [all...]
  /frameworks/av/media/libmedia/
AudioTrackShared.cpp 37 Proxy::Proxy(audio_track_cblk_t* cblk, void *buffers, size_t frameCount, size_t frameSize,
49 : Proxy(cblk, buffers, frameCount, frameSize, isOut, clientInServer), mEpoch(0)
516 : Proxy(cblk, buffers, frameCount, frameSize, isOut, clientInServer),
  /frameworks/base/core/java/android/security/
IKeystoreService.java 33 private static class Proxy implements IKeystoreService {
36 Proxy(IBinder remote) {
567 * a proxy if needed.
577 return new IKeystoreService.Stub.Proxy(obj);
  /frameworks/base/packages/CaptivePortalLogin/src/com/android/captiveportallogin/
CaptivePortalLoginActivity.java 30 import android.net.Proxy;
90 // Set HTTP proxy system properties to those of the selected Network.
104 Proxy.setHttpProxySystemProperty(host, port, exclList, pacFileUrl);
105 Log.v(TAG, "Set proxy system properties to " + proxyInfo);
108 // Proxy system properties must be initialized before setContentView is called because
139 // Start initial page load so WebView finishes loading proxy settings.
144 // Find WebView's proxy BroadcastReceiver and prompt it to read proxy system properties.
157 Intent intent = new Intent(Proxy.PROXY_CHANGE_ACTION);
159 Log.v(TAG, "Prompting WebView proxy reload.")
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_descr.py     [all...]

Completed in 1927 milliseconds

1 2 3