HomeSort by relevance Sort by last modified time
    Searched defs:proxy (Results 26 - 50 of 420) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/skia/src/utils/android/
SkHwuiRenderer.h 24 SkAutoTDelete<android::uirenderer::renderthread::RenderProxy> proxy; member in struct:SkHwuiRenderer
  /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/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/debuggee/
ProxyDebuggee.java 26 import java.lang.reflect.Proxy;
51 public Object invoke(Object proxy, Method method, Object[] args)
59 checkedProxyObject = Proxy.newProxyInstance(getClass().getClassLoader(),
62 InterfaceForProxy proxy = (InterfaceForProxy) checkedProxyObject; local
63 proxy.call(ARG_INT, ARG_LONG, ARG_OBJECT);
  /external/apache-http/src/org/apache/http/impl/conn/
DefaultHttpRoutePlanner.java 55 * nor of system or browser proxy settings.
109 final HttpHost proxy = local
117 if (proxy == null) {
120 route = new HttpRoute(target, local, proxy, secure);
  /external/javassist/src/main/javassist/util/proxy/
ProxyObjectInputStream.java 16 package javassist.util.proxy;
26 * from a proxy factory configured with {@link ProxyFactory#useWriteReplace} set to false.
34 * using class ProxyFactory. the classloader used to resolve proxy superclass and interface names
94 * the loader to use to resolve classes for proxy superclass and interface names read
SerializedProxy.java 16 package javassist.util.proxy;
26 * A proxy object is converted into an instance of this class
37 SerializedProxy(Class proxy, byte[] sig, MethodHandler h) {
40 superClass = proxy.getSuperclass().getName();
41 Class[] infs = proxy.getInterfaces();
83 ProxyObject proxy = (ProxyObject)f.createClass(filterSignature).newInstance();
84 proxy.setHandler(handler);
85 return proxy;
  /external/javassist/src/test/test/javassist/proxy/
JASSIST113RegressionTest.java 1 package test.javassist.proxy;
3 import javassist.util.proxy.ProxyFactory;
ProxySerializationTest.java 1 package test.javassist.proxy;
3 import javassist.util.proxy.*;
13 * {@link javassist.util.proxy.ProxyObjectOutputStream} and @link javassist.util.proxy.ProxyObjectInputStream}
14 * reuses classes located in the proxy cache. This tests the fixes provided for JASSIST-42 and JASSIST-97.
34 TestClass proxy = (TestClass)constructor.newInstance(new Object[] {name}); local
35 ((ProxyObject)proxy).setHandler(handler);
38 out.writeObject(proxy);
46 // since we are reading into the same JVM the new proxy should have the same class as the old proxy
61 TestClass proxy = (TestClass)constructor.newInstance(new Object[] {name}); local
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
CallbackGenerator.java 16 package org.mockito.cglib.proxy;
MixinEverythingEmitter.java 16 package org.mockito.cglib.proxy;
CallbackInfo.java 16 package org.mockito.cglib.proxy;
NoOpGenerator.java 16 package 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...]
  /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...]
  /frameworks/av/media/libstagefright/filters/
GraphicBufferListener.cpp 50 sp<BufferQueue::ProxyConsumerListener> proxy = local
53 err = mConsumer->consumerConnect(proxy, false);
  /hardware/qcom/gps/core/
ContextBase.cpp 45 LBSProxyBase* proxy = NULL; local
52 proxy = (*getter)();
55 if (NULL == proxy) {
56 proxy = new LBSProxyBase();
59 return proxy;
  /hardware/qcom/gps/msm8084/core/
ContextBase.cpp 45 LBSProxyBase* proxy = NULL; local
54 proxy = (*getter)();
63 if (NULL == proxy) {
64 proxy = new LBSProxyBase();
67 return proxy;
  /hardware/qcom/gps/msm8960/core/
ContextBase.cpp 46 IzatProxyBase* proxy = NULL; local
52 proxy = (*getter)();
55 if (NULL == proxy) {
56 proxy = new IzatProxyBase();
58 return proxy;
  /hardware/qcom/gps/msm8974/core/
ContextBase.cpp 45 LBSProxyBase* proxy = NULL; local
54 proxy = (*getter)();
63 if (NULL == proxy) {
64 proxy = new LBSProxyBase();
67 return proxy;
  /external/guava/guava-tests/test/com/google/common/reflect/
AbstractInvocationHandlerTest.java 29 import java.lang.reflect.Proxy;
48 List<String> proxy = newDelegatingList(LIST1); local
49 assertEquals(Proxy.getInvocationHandler(proxy).toString(), proxy.toString());
63 // But whatever, no one is going to proxy List (hopefully).
83 @SuppressWarnings("unchecked") // proxy of List<String>
88 @SuppressWarnings("unchecked") // proxy of List<String>
93 @SuppressWarnings("unchecked") // proxy of Iterable<String>
98 @SuppressWarnings("unchecked") // proxy of List<String
    [all...]
  /external/mockito/src/org/mockito/internal/creation/jmock/
ClassImposterizer.java 10 import org.mockito.cglib.proxy.*;
66 "ClassCastException occurred while creating the mockito proxy :",
69 " proxy instance class : '" + proxyInstance.getClass().getCanonicalName() + "', loaded by classloader : '" + proxyInstance.getClass().getClassLoader() + "'",
134 Factory proxy = (Factory) objenesis.newInstance(proxyClass); local
135 proxy.setCallbacks(new Callback[] {interceptor, SerializableNoOp.SERIALIZABLE_INSTANCE });
136 return proxy;
  /libcore/luni/src/main/java/java/beans/
PropertyChangeSupport.java 131 * method's signature is asymmetric to avoid allocating a proxy: if
325 PropertyChangeListenerProxy proxy = (PropertyChangeListenerProxy) p; local
326 PropertyChangeListener listener = (PropertyChangeListener) proxy.getListener();
328 PropertyChangeSupport list = map.get(proxy.getPropertyName());
331 map.put(proxy.getPropertyName(), list);
390 PropertyChangeListenerProxy proxy = (PropertyChangeListenerProxy) p; local
391 if (!Objects.equal(proxy.getPropertyName(), propertyName)) {
394 p = (PropertyChangeListener) proxy.getListener();
  /external/apache-http/src/org/apache/http/conn/params/
ConnRouteParams.java 89 * @return the default proxy set in the argument parameters, or
96 HttpHost proxy = (HttpHost) local
98 if ((proxy != null) && NO_HOST.equals(proxy)) {
100 proxy = null;
102 return proxy;
111 * @param proxy the value to set, may be <code>null</code>.
117 HttpHost proxy) {
121 params.setParameter(DEFAULT_PROXY, proxy);
  /external/apache-http/src/org/apache/http/impl/auth/
AuthSchemeBase.java 58 * Flag whether authenticating against a proxy.
60 private boolean proxy; field in class:AuthSchemeBase
82 this.proxy = false;
84 this.proxy = true;
123 * Returns <code>true</code> if authenticating against a proxy, <code>false</code>
126 * @return <code>true</code> if authenticating against a proxy, <code>false</code>
130 return this.proxy;
  /external/google-breakpad/src/tools/linux/symupload/
minidump_upload.cc 53 string proxy; member in struct:Options
71 options->proxy,
100 fprintf(stderr, "-x:\t <host[:port]> Use HTTP proxy on given port\n");
101 fprintf(stderr, "-u:\t <user[:password]> Set proxy user and password\n");
124 options->proxy = optarg;

Completed in 264 milliseconds

12 3 4 5 6 7 8 91011>>