HomeSort by relevance Sort by last modified time
    Searched refs:proxy (Results 1 - 25 of 1222) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
Callback.java 16 package org.mockito.cglib.proxy;
ProxyRefDispatcher.java 16 package org.mockito.cglib.proxy;
21 * which references the proxy object.
27 * @param proxy a reference to the proxy (generated) object
30 Object loadObject(Object proxy) throws Exception;
InvocationHandler.java 16 package org.mockito.cglib.proxy;
22 * This callback type is primarily for use by the {@link Proxy} class but
33 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable;
MethodInterceptor.java 16 package org.mockito.cglib.proxy;
33 * @param proxy used to invoke super (non-intercepted method); may be called
40 MethodProxy proxy) throws Throwable;
Dispatcher.java 16 package org.mockito.cglib.proxy;
FixedValue.java 16 package org.mockito.cglib.proxy;
LazyLoader.java 16 package org.mockito.cglib.proxy;
26 * for every future method call to the proxy instance.
NoOp.java 16 package org.mockito.cglib.proxy;
  /libcore/ojluni/src/main/java/sun/net/
ApplicationProxy.java 28 import java.net.Proxy;
32 * Proxy wrapper class so that we can determine application set
35 public final class ApplicationProxy extends Proxy {
36 private ApplicationProxy(Proxy proxy) {
37 super(proxy.type(), proxy.address());
40 public static ApplicationProxy create(Proxy proxy) {
41 return new ApplicationProxy(proxy);
    [all...]
  /system/media/alsa_utils/include/
alsa_device_proxy.h 37 void proxy_prepare(alsa_device_proxy * proxy, alsa_device_profile * profile,
39 int proxy_open(alsa_device_proxy * proxy);
40 void proxy_close(alsa_device_proxy * proxy);
41 int proxy_get_presentation_position(const alsa_device_proxy * proxy,
45 unsigned proxy_get_sample_rate(const alsa_device_proxy * proxy);
46 enum pcm_format proxy_get_format(const alsa_device_proxy * proxy);
47 unsigned proxy_get_channel_count(const alsa_device_proxy * proxy);
48 unsigned int proxy_get_period_size(const alsa_device_proxy * proxy);
49 unsigned proxy_get_latency(const alsa_device_proxy * proxy);
52 int proxy_write(alsa_device_proxy * proxy, const void *data, unsigned int count)
    [all...]
  /external/webrtc/webrtc/base/
proxyinfo.cc 15 const char * ProxyToString(ProxyType proxy) {
17 return PROXY_NAMES[proxy];
  /system/media/alsa_utils/
alsa_device_proxy.c 42 void proxy_prepare(alsa_device_proxy * proxy, alsa_device_profile* profile,
47 proxy->profile = profile;
54 proxy->alsa_config.format = config->format;
58 proxy->alsa_config.format = profile->default_config.format;
62 proxy->alsa_config.rate = config->rate;
66 proxy->alsa_config.rate = profile->default_config.rate;
70 proxy->alsa_config.channels = config->channels;
72 proxy->alsa_config.channels = profile_get_closest_channel_count(profile, config->channels);
74 config->channels, proxy->alsa_config.channels);
77 proxy->alsa_config.period_count = profile->default_config.period_count
    [all...]
  /external/libmicrohttpd/src/examples/
mhd2spdy_http.c 20 * @brief HTTP part of the proxy. libmicrohttpd is used for the server side.
56 "Proxy-Connection",
87 struct Proxy *proxy = (struct Proxy *)cls; local
92 PRINT_INFO2("http_cb_response for %s", proxy->url);
94 if(proxy->spdy_error)
97 if(0 == proxy->http_body_size && (proxy->done || !proxy->spdy_active)
171 struct Proxy *proxy; local
380 struct Proxy *proxy; local
    [all...]
  /external/apache-harmony/beans/src/test/java/org/apache/harmony/beans/tests/java/beans/
PropertyChangeListenerProxyTest.java 31 PropertyChangeListenerProxy proxy; field in class:PropertyChangeListenerProxyTest
42 proxy = new PropertyChangeListenerProxy(name, listener);
46 proxy = new PropertyChangeListenerProxy(null, listener);
47 assertSame(listener, proxy.getListener());
48 assertNull(proxy.getPropertyName());
51 proxy.propertyChange(newevent);
53 proxy = new PropertyChangeListenerProxy(name, null);
54 assertSame(name, proxy.getPropertyName());
55 assertNull(proxy.getListener());
57 proxy.propertyChange(new PropertyChangeEvent(new Object(), "name"
82 PropertyChangeListenerProxy proxy = new PropertyChangeListenerProxy( local
    [all...]
  /external/autotest/client/site_tests/platform_CryptohomeMount/
platform_CryptohomeMount.py 19 proxy = cryptohome.CryptohomeProxy()
22 proxy.remove(test_user)
25 if not proxy.mount(test_user, test_password, create=True):
29 if not proxy.unmount(test_user):
33 if proxy.is_mounted(test_user):
38 if proxy.mount(test_user, incorrect_password):
41 if proxy.is_mounted(test_user):
45 if not proxy.remove(test_user):
  /external/curl/lib/
http_negotiate.h 28 CURLcode Curl_input_negotiate(struct connectdata *conn, bool proxy,
32 CURLcode Curl_output_negotiate(struct connectdata *conn, bool proxy);
http_ntlm.h 30 CURLcode Curl_input_ntlm(struct connectdata *conn, bool proxy,
34 CURLcode Curl_output_ntlm(struct connectdata *conn, bool proxy);
  /packages/apps/Camera2/src/com/android/camera/processing/imagebackend/
ImageToProcess.java 31 public final ImageProxy proxy; field in class:ImageToProcess
37 * @param proxy The underlying image to process.
43 * (0, 0)-(proxy.width, proxy.height) is a no-op.
45 public ImageToProcess(ImageProxy proxy, OrientationManager.DeviceOrientation imageRotation,
47 this.proxy = proxy;
56 * @param proxy The underlying image to process.
60 public ImageToProcess(ImageProxy proxy, OrientationManager.DeviceOrientation imageRotation,
62 this(proxy, imageRotation, metadata, new Rect(0, 0, proxy.getWidth(), proxy.getHeight()))
    [all...]
  /external/javassist/src/main/javassist/util/proxy/
ProxyObject.java 16 package javassist.util.proxy;
19 * The interface implemented by proxy classes.
  /packages/services/Car/car-support-lib/src/android/support/car/hardware/
CarSensorManagerEmbedded.java 56 CarSensorEventListenerProxy proxy = null; local
58 proxy = findListenerLocked(listener);
59 if (proxy == null) {
60 proxy = new CarSensorEventListenerProxy(listener, sensorType);
62 proxy.sensors |= sensorType;
66 return mManager.registerListener(proxy, sensorType, rate);
75 CarSensorEventListenerProxy proxy = null; local
77 proxy = findListenerLocked(listener);
78 if (proxy == null) {
81 mListeners.remove(proxy);
93 CarSensorEventListenerProxy proxy = null; local
    [all...]
  /external/v8/test/mjsunit/es6/
proxies-has-own-property.js 7 var proxy = new Proxy(target, handler);
10 assertTrue(proxy.hasOwnProperty('a'));
12 assertFalse(proxy.hasOwnProperty('b'));
19 assertFalse(proxy.hasOwnProperty('a'));
21 assertFalse(proxy.hasOwnProperty('b'));
27 assertTrue(proxy.hasOwnProperty('a'));
29 assertTrue(proxy.hasOwnProperty('b'));
35 assertThrows(function(){ proxy.hasOwnProperty('a') }, Error);
37 assertThrows(function(){ proxy.hasOwnProperty('b') }, Error)
    [all...]
proxies-apply.js 6 var proxy = new Proxy({},{});
7 assertThrows(function(){ proxy() }, TypeError);
9 var proxy2 = new Proxy(proxy, {});
18 var proxy = new Proxy(target, {});
20 proxy();
24 var proxy2 = new Proxy(proxy, {});
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Route.java 19 import java.net.Proxy;
25 * <li><strong>HTTP proxy:</strong> a proxy server may be explicitly
27 * proxy selector} is used. It may return multiple proxies to attempt.
29 * server or a proxy, opening a socket requires an IP address. The DNS
36 final Proxy proxy; field in class:Route
39 public Route(Address address, Proxy proxy, InetSocketAddress inetSocketAddress) {
43 if (proxy == null)
    [all...]
  /external/autotest/client/site_tests/platform_CryptohomeMigrateKey/
platform_CryptohomeMigrateKey.py 17 if not self.proxy.mount(user, old_pass, create=True):
19 if not self.proxy.unmount(user):
21 if not self.proxy.migrate(user, old_pass, new_pass):
23 if self.proxy.mount(user, old_pass):
25 if not self.proxy.mount(user, new_pass):
27 if not self.proxy.unmount(user):
29 self.proxy.remove(user)
35 if not self.proxy.mount(user, old_pass, create=True):
37 if not self.proxy.unmount(user):
39 if self.proxy.migrate(user, 'bad', new_pass)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
ProxyTest.java 19 import java.net.Proxy;
29 * java.net.Proxy#Proxy(java.net.Proxy.Type, SocketAddress)
32 // test HTTP type proxy
33 Proxy proxy = new Proxy(Proxy.Type.HTTP, address); local
34 assertEquals(Proxy.Type.HTTP, proxy.type())
52 Proxy proxy = null; local
111 Proxy proxy = new Proxy(Proxy.Type.HTTP, address); local
170 Proxy proxy[] = { new Proxy(Proxy.Type.HTTP, address1), local
    [all...]

Completed in 440 milliseconds

1 2 3 4 5 6 7 8 91011>>