HomeSort by relevance Sort by last modified time
    Searched refs:proxy (Results 201 - 225 of 1577) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/easymock/src/org/easymock/internal/
MockInvocationHandler.java 32 public Object invoke(Object proxy, Method method, Object[] args)
39 new Invocation(proxy, method, args));
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
SimpleTimeLimiterTest.java 121 Sample proxy = service.newProxy( local
124 assertEquals("x", proxy.sleepThenReturnInput("x"));
131 Sample proxy = service.newProxy( local
135 proxy.sleepThenReturnInput("x");
149 Sample proxy = service.newProxy( local
153 proxy.sleepThenThrowException();
162 Sample proxy = service.newProxy( local
166 proxy.sleepThenThrowException();
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
RouteSelector.java 25 import java.net.Proxy;
35 * choice of proxy server, IP address, and TLS mode. Connections may also be
43 private Proxy lastProxy;
46 /* State for negotiating the next proxy to use. */
47 private List<Proxy> proxies = Collections.emptyList();
102 if (failedRoute.getProxy().type() != Proxy.Type.DIRECT && address.getProxySelector() != null) {
103 // Tell the proxy selector when we fail to connect on a fresh connection.
111 /** Prepares the proxy servers to try. */
112 private void resetNextProxy(HttpUrl url, Proxy proxy) {
    [all...]
  /external/skia/tests/
TestUtils.h 25 // Ensure that the pixels can be copied from 'proxy' to an RGBA 8888 destination (both
28 GrSurfaceProxy* proxy, uint32_t expectedPixelValues[],
VkUploadPixelsTests.cpp 77 sk_sp<GrTextureProxy> proxy = proxyProvider->createTextureProxy(surfDesc, SkBudgeted::kNo, local
79 REPORTER_ASSERT(reporter, proxy);
80 if (proxy) {
81 sk_sp<GrSurfaceContext> sContext = context->contextPriv().makeWrappedSurfaceContext(proxy);
109 proxy = proxyProvider->createTextureProxy(surfDesc, SkBudgeted::kNo, srcBuffer, 0);
110 REPORTER_ASSERT(reporter, proxy);
111 if (proxy) {
112 sk_sp<GrSurfaceContext> sContext = context->contextPriv().makeWrappedSurfaceContext(proxy);
ProxyTest.cpp 25 // Check that the surface proxy's member vars are set as expected
27 GrSurfaceProxy* proxy,
32 REPORTER_ASSERT(reporter, proxy->origin() == origin);
33 REPORTER_ASSERT(reporter, proxy->width() == width);
34 REPORTER_ASSERT(reporter, proxy->height() == height);
35 REPORTER_ASSERT(reporter, proxy->config() == config);
36 REPORTER_ASSERT(reporter, !proxy->uniqueID().isInvalid());
37 REPORTER_ASSERT(reporter, proxy->isBudgeted() == budgeted);
127 sk_sp<GrTextureProxy> proxy = proxyProvider->createProxy( local
129 REPORTER_ASSERT(reporter, SkToBool(tex) == SkToBool(proxy));
328 sk_sp<GrTextureProxy> proxy = provider->createProxy(desc, fit, SkBudgeted::kNo); local
    [all...]
  /external/skqp/src/gpu/
GrContext.cpp 79 GrDDLContext(GrContextThreadSafeProxy* proxy) : INHERITED(proxy) {}
206 sk_sp<GrContext> GrContextPriv::MakeDDL(GrContextThreadSafeProxy* proxy) {
207 sk_sp<GrContext> context(new GrDDLContext(proxy));
211 if (!context->init(proxy->fOptions)) {
226 GrContext::GrContext(GrContextThreadSafeProxy* proxy)
227 : fCaps(proxy->fCaps)
228 , fUniqueID(proxy->fContextUniqueID)
229 , fBackend(proxy->fBackend) {
450 void GrContextPriv::flush(GrSurfaceProxy* proxy) {
717 sk_sp<GrTextureProxy> proxy = src->asTextureProxyRef(); local
834 sk_sp<GrTextureProxy> proxy; local
858 sk_sp<GrSurfaceProxy> proxy = this->proxyProvider()->createWrappedTextureProxy(tex, origin); local
892 sk_sp<GrSurfaceProxy> proxy = this->proxyProvider()->createWrappedRenderTargetProxy(backendRT, local
    [all...]
  /external/skqp/tests/
TestUtils.h 25 // Ensure that the pixels can be copied from 'proxy' to an RGBA 8888 destination (both
28 GrSurfaceProxy* proxy, uint32_t expectedPixelValues[],
VkUploadPixelsTests.cpp 77 sk_sp<GrTextureProxy> proxy = proxyProvider->createTextureProxy(surfDesc, SkBudgeted::kNo, local
79 REPORTER_ASSERT(reporter, proxy);
80 if (proxy) {
81 sk_sp<GrSurfaceContext> sContext = context->contextPriv().makeWrappedSurfaceContext(proxy);
109 proxy = proxyProvider->createTextureProxy(surfDesc, SkBudgeted::kNo, srcBuffer, 0);
110 REPORTER_ASSERT(reporter, proxy);
111 if (proxy) {
112 sk_sp<GrSurfaceContext> sContext = context->contextPriv().makeWrappedSurfaceContext(proxy);
  /external/sl4a/ScriptingLayer/src/com/googlecode/android_scripting/
ScriptProcess.java 29 public ScriptProcess(File script, InterpreterConfiguration configuration, AndroidProxy proxy) {
30 super(configuration.getInterpreterForScript(script.getName()), proxy); local
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
ProxyInputStream.java 24 * A Proxy stream which acts as expected, that is it passes the method
40 * @param proxy the InputStream to delegate to
42 public ProxyInputStream(InputStream proxy) {
43 super(proxy);
44 // the proxy is stored in a protected superclass variable named 'in'
ProxyReader.java 24 * A Proxy stream which acts as expected, that is it passes the method
40 * @param proxy the Reader to delegate to
42 public ProxyReader(Reader proxy) {
43 super(proxy);
44 // the proxy is stored in a protected superclass variable named 'in'
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
ProxyWriter.java 24 * A Proxy stream which acts as expected, that is it passes the method
39 * @param proxy the Writer to delegate to
41 public ProxyWriter(Writer proxy) {
42 super(proxy);
43 // the proxy is stored in a protected superclass variable named 'out'
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gre/
NodeFactoryTest.java 54 NodeProxy proxy = m.create(cvi); local
57 assertNotNull(proxy);
58 assertSame(uiv, proxy.getNode());
61 INode inode = proxy;
75 NodeProxy proxy = m.create(uiv); local
78 assertNotNull(proxy);
79 assertSame(uiv, proxy.getNode());
82 INode inode = proxy;
100 // NodeProxies are cached. Creating the same one twice returns the same proxy.
112 // NodeProxies are cached. Creating the same one twice returns the same proxy
    [all...]
  /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/curl/docs/cmdline-opts/
proxy-user.d 1 Long: proxy-user
4 Help: Proxy user and password
6 Specify the user name and password to use for proxy authentication.
  /external/google-breakpad/src/common/linux/
http_upload.h 65 const string &proxy,
  /external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/
OkUrlFactory.java 23 import java.net.Proxy;
57 HttpURLConnection open(URL url, Proxy proxy) {
60 copy.setProxy(proxy);
85 @Override protected URLConnection openConnection(URL url, Proxy proxy) {
86 return open(url, proxy);
  /external/skia/src/gpu/effects/
GrMatrixConvolutionEffect.h 19 static std::unique_ptr<GrFragmentProcessor> Make(sk_sp<GrTextureProxy> proxy,
29 new GrMatrixConvolutionEffect(std::move(proxy), bounds, kernelSize, kernel, gain,
33 static std::unique_ptr<GrFragmentProcessor> MakeGaussian(sk_sp<GrTextureProxy> proxy,
58 GrMatrixConvolutionEffect(sk_sp<GrTextureProxy> proxy,
  /external/skqp/src/gpu/effects/
GrMatrixConvolutionEffect.h 19 static std::unique_ptr<GrFragmentProcessor> Make(sk_sp<GrTextureProxy> proxy,
29 new GrMatrixConvolutionEffect(std::move(proxy), bounds, kernelSize, kernel, gain,
33 static std::unique_ptr<GrFragmentProcessor> MakeGaussian(sk_sp<GrTextureProxy> proxy,
58 GrMatrixConvolutionEffect(sk_sp<GrTextureProxy> proxy,
  /external/webrtc/webrtc/base/
autodetectproxy_unittest.cc 67 void SetProxy(const SocketAddress& proxy) {
68 auto_detect_proxy_->set_proxy(proxy);
75 void TestCopesWithProxy(const SocketAddress& proxy) {
76 // Tests that at least autodetect doesn't crash for a given proxy address.
83 SetProxy(proxy);
118 // Test that proxy detection completes successfully. (Does not actually verify
119 // the correct detection result since we don't know what proxy to expect on an
  /packages/apps/Camera2/src/com/android/camera/processing/imagebackend/
TaskPreviewChainedJpeg.java 64 Rect safeCrop = guaranteedSafeCrop(img.proxy, img.crop);
76 logWrapper("TIMER_END Rendering preview YUV buffer available, w=" + img.proxy.getWidth()
77 / subsample + " h=" + img.proxy.getHeight() / subsample + " of subsample "
80 convertedImage = runSelectedConversion(img.proxy, safeCrop, subsample);
  /prebuilts/go/darwin-x86/src/net/http/
proxy_test.go 20 // Never proxy localhost:
48 proxy string
61 var proxy *url.URL
62 if tt.proxy != "" {
63 u, err := url.Parse(tt.proxy)
67 proxy = u
69 cm := connectMethod{proxy, tt.scheme, tt.addr}
71 t.Fatalf("{%q, %q, %q} cache key = %q; want %q", tt.proxy, tt.scheme, tt.addr, got, tt.key)
  /prebuilts/go/linux-x86/src/net/http/
proxy_test.go 20 // Never proxy localhost:
48 proxy string
61 var proxy *url.URL
62 if tt.proxy != "" {
63 u, err := url.Parse(tt.proxy)
67 proxy = u
69 cm := connectMethod{proxy, tt.scheme, tt.addr}
71 t.Fatalf("{%q, %q, %q} cache key = %q; want %q", tt.proxy, tt.scheme, tt.addr, got, tt.key)
  /system/bt/binder/android/bluetooth/
IBluetoothManager.aidl 43 boolean bindBluetoothProfileService(int profile, IBluetoothProfileServiceConnection proxy);
44 void unbindBluetoothProfileService(int profile, IBluetoothProfileServiceConnection proxy);

Completed in 970 milliseconds

1 2 3 4 5 6 7 891011>>