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

1 2 3 4 56 7 8 91011>>

  /external/skia/src/gpu/effects/
GrTextureDomain.cpp 22 static bool can_ignore_rect(GrTextureProxy* proxy, const SkRect& domain) {
23 if (GrProxyProvider::IsFunctionallyExact(proxy)) {
24 const SkIRect kFullRect = SkIRect::MakeWH(proxy->width(), proxy->height());
32 GrTextureDomain::GrTextureDomain(GrTextureProxy* proxy, const SkRect& domain, Mode mode, int index)
40 if (kClamp_Mode == mode && can_ignore_rect(proxy, domain)) {
45 const SkRect kFullRect = SkRect::MakeIWH(proxy->width(), proxy->height());
162 GrSurfaceProxy* proxy) {
163 GrTexture* tex = proxy->priv().peekTexture()
276 GrSurfaceProxy* proxy = tde.textureSampler(0).proxy(); local
301 sk_sp<GrTextureProxy> proxy = d->textureProxy(texIdx); local
382 GrSurfaceProxy* proxy = dstdfp.textureSampler(0).proxy(); local
425 sk_sp<GrTextureProxy> proxy = d->textureProxy(texIdx); local
    [all...]
GrBicubicEffect.h 34 static std::unique_ptr<GrFragmentProcessor> Make(sk_sp<GrTextureProxy> proxy,
37 return std::unique_ptr<GrFragmentProcessor>(new GrBicubicEffect(std::move(proxy), matrix,
44 static std::unique_ptr<GrFragmentProcessor> Make(sk_sp<GrTextureProxy> proxy,
47 return std::unique_ptr<GrFragmentProcessor>(new GrBicubicEffect(std::move(proxy), matrix,
  /external/skqp/src/gpu/effects/
GrTextureDomain.cpp 22 static bool can_ignore_rect(GrTextureProxy* proxy, const SkRect& domain) {
23 if (GrProxyProvider::IsFunctionallyExact(proxy)) {
24 const SkIRect kFullRect = SkIRect::MakeWH(proxy->width(), proxy->height());
32 GrTextureDomain::GrTextureDomain(GrTextureProxy* proxy, const SkRect& domain, Mode mode, int index)
40 if (kClamp_Mode == mode && can_ignore_rect(proxy, domain)) {
45 const SkRect kFullRect = SkRect::MakeIWH(proxy->width(), proxy->height());
162 GrSurfaceProxy* proxy) {
163 GrTexture* tex = proxy->priv().peekTexture()
276 GrSurfaceProxy* proxy = tde.textureSampler(0).proxy(); local
301 sk_sp<GrTextureProxy> proxy = d->textureProxy(texIdx); local
382 GrSurfaceProxy* proxy = dstdfp.textureSampler(0).proxy(); local
425 sk_sp<GrTextureProxy> proxy = d->textureProxy(texIdx); local
    [all...]
  /external/autotest/client/site_tests/platform_DebugDaemonGetRoutes/
platform_DebugDaemonGetRoutes.py 16 proxy = bus.get_object('org.chromium.debugd', '/org/chromium/debugd')
17 self.iface = dbus.Interface(proxy,
  /external/curl/docs/cmdline-opts/
suppress-connect-headers.d 2 Help: Suppress proxy CONNECT response headers
5 When --proxytunnel is used and a CONNECT request is made don't output proxy
  /external/mockito/src/test/java/org/mockito/internal/creation/bytebuddy/
SubclassByteBuddyMockMakerTest.java 60 ClassWithAnnotation proxy = mockMaker.createMock(mockSettings, dummyHandler()); local
62 assertThat(proxy.getClass().isAnnotationPresent(SampleAnnotation.class)).isTrue();
63 assertThat(proxy.getClass().getAnnotation(SampleAnnotation.class).value()).isEqualTo("foo");
65 assertThat(proxy.getClass().getMethod("sampleMethod").isAnnotationPresent(SampleAnnotation.class)).isTrue();
66 assertThat(proxy.getClass().getMethod("sampleMethod").getAnnotation(SampleAnnotation.class).value()).isEqualTo("bar");
75 ClassWithAnnotation proxy = mockMaker.createMock(mockSettings, dummyHandler()); local
77 assertThat(proxy.getClass().isAnnotationPresent(SampleAnnotation.class)).isFalse();
78 assertThat(proxy.getClass().getMethod("sampleMethod").isAnnotationPresent(SampleAnnotation.class)).isFalse();
  /external/okhttp/android/main/java/com/squareup/okhttp/
HttpHandler.java 24 import java.net.Proxy;
44 return newOkUrlFactory(null /* proxy */).open(url);
47 @Override protected URLConnection openConnection(URL url, Proxy proxy) throws IOException {
48 if (url == null || proxy == null) {
49 throw new IllegalArgumentException("url == null || proxy == null");
51 return newOkUrlFactory(proxy).open(url);
58 protected OkUrlFactory newOkUrlFactory(Proxy proxy) {
59 OkUrlFactory okUrlFactory = createHttpOkUrlFactory(proxy);
    [all...]
HttpsHandler.java 20 import java.net.Proxy;
52 protected OkUrlFactory newOkUrlFactory(Proxy proxy) {
53 OkUrlFactory okUrlFactory = createHttpsOkUrlFactory(proxy);
66 public static OkUrlFactory createHttpsOkUrlFactory(Proxy proxy) {
68 OkUrlFactory okUrlFactory = HttpHandler.createHttpOkUrlFactory(proxy);
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
NetworkUpdateResult.java 35 public NetworkUpdateResult(boolean ip, boolean proxy, boolean credential) {
38 proxyChanged = proxy;
  /packages/apps/Camera2/src/com/android/camera/processing/imagebackend/
TaskChainedCompressImageToJpeg.java 52 Rect safeCrop = guaranteedSafeCrop(img.proxy, img.crop);
53 final List<ImageProxy.Plane> planeList = img.proxy.getPlanes();
55 final TaskImage inputImage = new TaskImage(mImage.rotation, img.proxy.getWidth(),
56 img.proxy.getHeight(), img.proxy.getFormat(), safeCrop);
57 final TaskImage resultImage = new TaskImage(mImage.rotation, img.proxy.getWidth(),
58 img.proxy.getHeight(), ImageFormat.JPEG , safeCrop);
74 dataCopy = convertYUV420ImageToPackedNV21(img.proxy);
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
ProxyOutputStream.java 24 * A Proxy stream which acts as expected, that is it passes the method
37 * @param proxy the OutputStream to delegate to
39 public ProxyOutputStream(OutputStream proxy) {
40 super(proxy);
41 // the proxy is stored in a protected superclass variable named 'out'
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/proxy/
socks5.go 5 package proxy package
63 // Dial connects to the address addr on the network net via the SOCKS5 proxy.
68 return nil, errors.New("proxy: no support for SOCKS5 proxy connections of type " + network)
82 // connect takes an existing connection to a socks5 proxy server,
93 return errors.New("proxy: failed to parse port number: " + portStr)
96 return errors.New("proxy: port number out of range: " + portStr)
110 return errors.New("proxy: failed to write greeting to SOCKS5 proxy at " + s.addr + ": " + err.Error())
114 return errors.New("proxy: failed to read greeting from SOCKS5 proxy at " + s.addr + ": " + err.Error()
    [all...]
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/proxy/
socks5.go 5 package proxy package
63 // Dial connects to the address addr on the network net via the SOCKS5 proxy.
68 return nil, errors.New("proxy: no support for SOCKS5 proxy connections of type " + network)
82 // connect takes an existing connection to a socks5 proxy server,
93 return errors.New("proxy: failed to parse port number: " + portStr)
96 return errors.New("proxy: port number out of range: " + portStr)
110 return errors.New("proxy: failed to write greeting to SOCKS5 proxy at " + s.addr + ": " + err.Error())
114 return errors.New("proxy: failed to read greeting from SOCKS5 proxy at " + s.addr + ": " + err.Error()
    [all...]
  /external/javassist/src/test/test/javassist/proxy/
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...]
  /frameworks/base/libs/hwui/tests/macrobench/
TestSceneRunner.cpp 65 benchmark::BenchmarkReporter* reporter, RenderProxy* proxy,
99 durationInS = proxy->frameTimePercentile(ri.percentile) / 1000.0;
133 std::unique_ptr<RenderProxy> proxy(new RenderProxy(false, rootNode.get(), &factory));
134 proxy->loadSystemProperties();
135 proxy->initialize(surface);
137 proxy->setup(dp(800.0f), 255 * 0.075, 255 * 0.15);
138 proxy->setLightCenter((Vector3){lightX, dp(-200.0f), dp(800.0f)});
149 UiFrameInfoBuilder(proxy->frameInfo()).setVsync(vsync, vsync);
150 proxy->syncAndDrawFrame();
153 proxy->resetProfileInfo()
    [all...]
  /external/skqp/tests/
ProxyTest.cpp 24 // Check that the surface proxy's member vars are set as expected
26 GrSurfaceProxy* proxy,
31 REPORTER_ASSERT(reporter, proxy->origin() == origin);
32 REPORTER_ASSERT(reporter, proxy->width() == width);
33 REPORTER_ASSERT(reporter, proxy->height() == height);
34 REPORTER_ASSERT(reporter, proxy->config() == config);
35 REPORTER_ASSERT(reporter, !proxy->uniqueID().isInvalid());
36 REPORTER_ASSERT(reporter, proxy->isBudgeted() == budgeted);
138 sk_sp<GrTextureProxy> proxy = proxyProvider->createProxy( local
140 REPORTER_ASSERT(reporter, SkToBool(tex) == SkToBool(proxy));
292 sk_sp<GrTextureProxy> proxy = provider->createProxy(desc, fit, SkBudgeted::kNo); local
    [all...]
  /prebuilts/tools/common/m2/repository/io/netty/netty-handler-proxy/4.1.6.Final/
netty-handler-proxy-4.1.6.Final.jar 
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
weakrefobject.c 216 * two callback-less refs (ref and proxy). Used to determine if the
285 PyWeakReference *ref, *proxy; local
297 get_basic_refs(*list, &ref, &proxy);
308 proxy pointers we got back earlier may have been collected,
320 get_basic_refs(*list, &ref, &proxy);
321 prev = (proxy == NULL) ? ref : proxy;
390 proxy_checkref(PyWeakReference *proxy)
392 if (PyWeakref_GET_OBJECT(proxy) == Py_None) {
401 /* If a parameter is a proxy, check that it is still "live" and wrap it,
758 PyWeakReference *ref, *proxy; local
817 PyWeakReference *ref, *proxy; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
weakrefobject.c 205 * two callback-less refs (ref and proxy). Used to determine if the
274 PyWeakReference *ref, *proxy; local
286 get_basic_refs(*list, &ref, &proxy);
297 proxy pointers we got back earlier may have been collected,
309 get_basic_refs(*list, &ref, &proxy);
310 prev = (proxy == NULL) ? ref : proxy;
379 proxy_checkref(PyWeakReference *proxy)
381 if (PyWeakref_GET_OBJECT(proxy) == Py_None) {
390 /* If a parameter is a proxy, check that it is still "live" and wrap it,
747 PyWeakReference *ref, *proxy; local
806 PyWeakReference *ref, *proxy; local
    [all...]
  /external/jacoco/org.jacoco.examples/src/org/jacoco/examples/
MBeanClient.java 47 final IProxy proxy = (IProxy) MBeanServerInvocationHandler local
52 System.out.println("Version: " + proxy.getVersion());
53 System.out.println("Session: " + proxy.getSessionId());
56 final byte[] data = proxy.getExecutionData(false);
  /external/javassist/src/main/javassist/tools/rmi/
StubGenerator.java 24 * A stub-code generator. It is used for producing a proxy class.
26 * <p>The proxy class for class A is as follows:
28 * <ul><pre>public class A implements Proxy, Serializable {
39 * <p>Instances of the proxy class is created by an
81 "javassist.tools.rmi.Proxy" });
94 * Returns <code>true</code> if the specified class is a proxy class
104 * Makes a proxy class. The produced class is substituted
108 * through the proxy class.
109 * @return <code>false</code> if the proxy class
136 CtClass proxy = classPool.makeClass(orgclass.getName() local
    [all...]
  /external/libmicrohttpd/src/examples/
mhd2spdy_http.h 20 * @brief HTTP part of the proxy. libmicrohttpd is used for the server side.
45 http_create_response(struct Proxy* proxy, char **nv);
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
RecordingOkAuthenticator.java 21 import java.net.Proxy;
27 public final List<Proxy> proxies = new ArrayList<>();
39 public Proxy onlyProxy() {
44 @Override public Request authenticate(Proxy proxy, Response response) {
46 proxies.add(proxy);
52 @Override public Request authenticateProxy(Proxy proxy, Response response) {
54 proxies.add(proxy);
56 .addHeader("Proxy-Authorization", credential
    [all...]
  /external/python/cpython2/Objects/
weakrefobject.c 216 * two callback-less refs (ref and proxy). Used to determine if the
284 PyWeakReference *ref, *proxy; local
296 get_basic_refs(*list, &ref, &proxy);
307 proxy pointers we got back earlier may have been collected,
319 get_basic_refs(*list, &ref, &proxy);
320 prev = (proxy == NULL) ? ref : proxy;
392 proxy_checkref(PyWeakReference *proxy)
394 if (PyWeakref_GET_OBJECT(proxy) == Py_None) {
403 /* If a parameter is a proxy, check that it is still "live" and wrap it
760 PyWeakReference *ref, *proxy; local
819 PyWeakReference *ref, *proxy; local
    [all...]
  /external/skia/src/gpu/
GrDeferredProxyUploader.h 26 * The uploader is owned by the proxy that it's going to populate.
31 * 4) In parallel to 2-3, on the main thread... Some op is created that refers to the proxy. When
50 void scheduleUpload(GrOpFlushState* flushState, GrTextureProxy* proxy) {
52 // Multiple references to the owning proxy may have caused us to already execute
56 auto uploadMask = [this, proxy](GrDeferredTextureUploadWritePixelsFn& writePixelsFn) {
62 writePixelsFn(proxy, 0, 0, this->fPixels.width(), this->fPixels.height(),
65 // Upload has finished, so tell the proxy to release this GrDeferredProxyUploader
66 proxy->texPriv().resetDeferredUploader();
106 // with it. (This happens if the proxy is deleted early due to a full clear or failure

Completed in 548 milliseconds

1 2 3 4 56 7 8 91011>>