| /external/skqp/src/gpu/ |
| GrDrawOpAtlas.cpp | 115 GrTextureProxy* proxy) { 117 SkASSERT(fDirty && fData && proxy && proxy->priv().peekTexture()); 123 writePixels(proxy, fOffset.fX + fDirtyRect.fLeft, fOffset.fY + fDirtyRect.fTop, 189 // MDB TODO: this is currently fine since the atlas' proxy is always pre-instantiated. 195 GrTextureProxy* proxy = fProxies[pageIdx].get(); local 198 [plotsp, proxy](GrDeferredTextureUploadWritePixelsFn& writePixels) { 199 plotsp->uploadToTexture(writePixels, proxy); 311 // MDB TODO: this is currently fine since the atlas' proxy is always pre-instantiated. 316 GrTextureProxy* proxy = fProxies[pageIdx].get() local [all...] |
| GrProgramDesc.cpp | 205 GrRenderTargetProxy* proxy = pipeline.proxy(); local 217 header->fOutputSwizzle = shaderCaps.configOutputSwizzle(proxy->config()).asKey();
|
| GrProxyProvider.cpp | 47 bool GrProxyProvider::assignUniqueKeyToProxy(const GrUniqueKey& key, GrTextureProxy* proxy) { 50 if (this->isAbandoned() || !proxy) { 63 if (SkBudgeted::kNo == proxy->isBudgeted() && 64 (!proxy->priv().isInstantiated() || 65 !proxy->priv().peekSurface()->resourcePriv().refsWrappedObjects())) { 71 proxy->cacheAccess().setUniqueKey(this, key); 72 SkASSERT(proxy->getUniqueKey() == key); 73 fUniquelyKeyedProxies.add(proxy); 77 void GrProxyProvider::adoptUniqueKeyFromSurface(GrTextureProxy* proxy, const GrSurface* surf) { 79 proxy->cacheAccess().setUniqueKey(this, surf->getUniqueKey()) 216 sk_sp<GrTextureProxy> proxy = this->createLazyProxy( local 401 sk_sp<GrTextureProxy> proxy = this->createLazyProxy( local 526 GrTextureProxy* proxy = fUniquelyKeyedProxies.find(key); local [all...] |
| /external/skqp/src/gpu/effects/ |
| GrBicubicEffect.cpp | 110 GrSurfaceProxy* proxy = processor.textureSampler(0).proxy(); local 111 GrTexture* texture = proxy->priv().peekTexture(); 117 fDomain.setData(pdman, bicubicEffect.domain(), proxy); 120 GrBicubicEffect::GrBicubicEffect(sk_sp<GrTextureProxy> proxy, 123 : INHERITED{kGrBicubicEffect_ClassID, ModulateByConfigOptimizationFlags(proxy->config())} 124 , fCoordTransform(matrix, proxy.get()) 126 , fTextureSampler(std::move(proxy), 132 GrBicubicEffect::GrBicubicEffect(sk_sp<GrTextureProxy> proxy, 135 : INHERITED(kGrBicubicEffect_ClassID, ModulateByConfigOptimizationFlags(proxy->config()) [all...] |
| GrMagnifierEffect.cpp | 86 GrSurfaceProxy& srcProxy = *_outer.textureSampler(0).proxy(); 174 sk_sp<GrTextureProxy> proxy = d->textureProxy(0); local 185 auto effect = GrMagnifierEffect::Make(std::move(proxy),
|
| GrTextureStripAtlas.cpp | 212 sk_sp<GrTextureProxy> proxy = proxyProvider->findOrCreateProxyByUniqueKey( local 214 if (!proxy) { 221 proxy = proxyProvider->createProxy(texDesc, SkBackingFit::kExact, SkBudgeted::kYes, 223 if (!proxy) { 227 SkASSERT(proxy->origin() == kTopLeft_GrSurfaceOrigin); 228 proxyProvider->assignUniqueKeyToProxy(key, proxy.get()); 233 SkASSERT(proxy); 234 fTexContext = fDesc.fContext->contextPriv().makeWrappedSurfaceContext(std::move(proxy));
|
| /external/skqp/tests/ |
| GrPipelineDynamicStateTest.cpp | 128 GrRenderTargetProxy* proxy = state->drawOpArgs().fProxy; variable 129 GrPipeline pipeline(proxy, fScissorState, SkBlendMode::kSrc);
|
| IntTextureTest.cpp | 82 sk_sp<GrTextureProxy> proxy = proxyProvider->createTextureProxy(desc, SkBudgeted::kYes, local 84 REPORTER_ASSERT(reporter, proxy); 85 if (!proxy) { 89 sContext = context->contextPriv().makeWrappedSurfaceContext(std::move(proxy));
|
| LazyProxyTest.cpp | 27 // This test verifies that lazy proxy callbacks get invoked during flush, after onFlush callbacks, 28 // but before Ops are executed. It also ensures that lazy proxy callbacks are invoked both for 218 sk_sp<GrTextureProxy> proxy = proxyProvider->createLazyProxy( local 231 proxy->priv().doLazyInstantiation(ctx->contextPriv().resourceProvider()); 233 proxy.reset(); 236 proxy.reset(); 295 // Test that when a lazy proxy fails to instantiate during flush that we drop the Op that it was
|
| SRGBMipMapTest.cpp | 135 sk_sp<GrTextureProxy> proxy = proxyProvider->createTextureProxy( local 151 paint.addColorTextureProcessor(std::move(proxy), SkMatrix::MakeScale(rtS), mipMapSamplerState);
|
| TextureProxyTest.cpp | 49 sk_sp<GrTextureProxy> proxy = proxyProvider->createProxy(desc, fit, SkBudgeted::kYes); local 51 REPORTER_ASSERT(reporter, !proxy->getUniqueKey().isValid()); 52 return proxy; 59 sk_sp<GrTextureProxy> proxy = proxyProvider->createProxy(desc, fit, SkBudgeted::kYes); local 61 REPORTER_ASSERT(reporter, !proxy->getUniqueKey().isValid()); 62 return proxy; 69 sk_sp<GrTextureProxy> proxy = proxyProvider->createInstantiatedProxy(desc, fit, local 72 REPORTER_ASSERT(reporter, !proxy->getUniqueKey().isValid()); 73 return proxy; 90 sk_sp<GrTextureProxy> proxy = proxyProvider->createInstantiatedProxy(desc, fit local 255 sk_sp<GrTextureProxy> proxy = deferred_tex(reporter, proxyProvider, SkBackingFit::kExact); local 297 sk_sp<GrTextureProxy> proxy = create_wrapped_backend(context, fit, &backingTex); local [all...] |
| /external/v8/src/parsing/ |
| preparser.cc | 314 VariableProxy* proxy = nullptr; local 321 proxy = scope()->NewUnresolved(&factory, name.string_, start_position, 324 return PreParserExpression::FromIdentifier(name, proxy, zone());
|
| /external/wayland/src/ |
| wayland-private.h | 150 struct wl_proxy *proxy; member in struct:wl_closure
|
| /frameworks/base/core/java/android/net/ |
| ProxyInfo.java | 30 * Describes a proxy configuration. 32 * Proxy configurations are already integrated within the {@code java.net} and 36 * Other HTTP stacks will need to obtain the proxy info from 37 * {@link Proxy#PROXY_CHANGE_ACTION} broadcast as the extra {@link Proxy#EXTRA_PROXY_INFO}. 61 * Constructs a {@link ProxyInfo} object that points at a Direct proxy 69 * Constructs a {@link ProxyInfo} object that points at a Direct proxy 72 * The proxy will not be used to access any host in exclusion list, exclList. 74 * @param exclList Hosts to exclude using the proxy on connections for. These 91 * Create a ProxyProperties that points at a HTTP Proxy 239 java.net.Proxy proxy = java.net.Proxy.NO_PROXY; local [all...] |
| /frameworks/base/services/core/java/com/android/server/location/ |
| ContextHubClientManager.java | 56 * The proxy to talk to the Context Hub. 122 ContextHubClientBroker proxy = mHostEndPointIdToClientMap.get(message.hostEndPoint); local 123 if (proxy != null) { 124 proxy.sendMessageToClient(clientMessage);
|
| GeofenceProxy.java | 69 GeofenceProxy proxy = new GeofenceProxy(context, overlaySwitchResId, local 72 if (proxy.bindGeofenceProvider()) { 73 return proxy;
|
| LocationProviderProxy.java | 40 * Proxy for ILocationProvider implementations. 62 LocationProviderProxy proxy = new LocationProviderProxy(context, name, action, local 65 if (proxy.bind()) { 66 return proxy;
|
| /frameworks/opt/net/voip/src/java/com/android/server/sip/ |
| SipSessionListenerProxy.java | 39 private void proxy(Runnable runnable) { method in class:SipSessionListenerProxy 49 proxy(new Runnable() { method 65 proxy(new Runnable() { method 80 proxy(new Runnable() { method 96 proxy(new Runnable() { method 111 proxy(new Runnable() { method 127 proxy(new Runnable() { method 142 proxy(new Runnable() { method 158 proxy(new Runnable() { method 174 proxy(new Runnable() method 189 proxy(new Runnable() { method 205 proxy(new Runnable() { method 221 proxy(new Runnable() { method 236 proxy(new Runnable() { method [all...] |
| /libcore/ojluni/src/main/java/sun/net/ |
| NetworkClient.java | 32 import java.net.Proxy; 49 protected Proxy proxy = Proxy.NO_PROXY; field in class:NetworkClient 154 if (proxy != null) { 155 if (proxy.type() == Proxy.Type.SOCKS) { 159 return new Socket(proxy); 161 } else if (proxy.type() == Proxy.Type.DIRECT) [all...] |
| /packages/services/Car/car-support-lib/src/android/support/car/ |
| CarAppFocusManagerEmbedded.java | 48 OnAppFocusChangedListenerProxy proxy; local 50 proxy = mChangeListeners.get(listener); 51 if (proxy == null) { 52 proxy = new OnAppFocusChangedListenerProxy(this, listener); 53 mChangeListeners.put(listener, proxy); 57 mManager.addFocusListener(proxy, appType); 65 OnAppFocusChangedListenerProxy proxy; local 67 proxy = mChangeListeners.get(listener); 68 if (proxy == null) { 72 mManager.removeFocusListener(proxy, appType) 77 OnAppFocusChangedListenerProxy proxy; local 90 OnAppFocusOwnershipCallbackProxy proxy; local 110 OnAppFocusOwnershipCallbackProxy proxy; local 130 OnAppFocusOwnershipCallbackProxy proxy; local 145 OnAppFocusOwnershipCallbackProxy proxy; local [all...] |
| /packages/services/Car/car-support-lib/src/android/support/car/hardware/ |
| CarSensorManagerEmbedded.java | 99 OnSensorChangedListenerProxy proxy = null; local 101 proxy = findListenerLocked(listener); 102 if (proxy == null) { 103 proxy = new OnSensorChangedListenerProxy(listener, sensorType, this); 104 mListeners.add(proxy); 106 proxy.sensors.add(sensorType); 110 return mManager.registerListener(proxy, sensorType, rate); 119 OnSensorChangedListenerProxy proxy = null; local 121 proxy = findListenerLocked(listener); 122 if (proxy == null) 133 OnSensorChangedListenerProxy proxy = null; local [all...] |
| /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/ |
| org.eclipse.core.net_1.2.200.v20130430-1352.jar | |
| /art/test/044-proxy/src/ |
| WrappedThrow.java | 21 import java.lang.reflect.Proxy; 25 * Create a Proxy class that blah. 31 Object proxy; local 34 proxy = Proxy.newProxyInstance(WrappedThrow.class.getClassLoader(), 42 InterfaceW1 if1 = (InterfaceW1) proxy; 43 InterfaceW2 if2 = (InterfaceW2) proxy; 176 * Invocation handler for our proxy class. 186 * This is called when anything gets invoked in the proxy object. 188 public Object invoke(Object proxy, Method method, Object[] args [all...] |
| /art/tools/wrapagentproperties/ |
| wrapagentproperties.cc | 207 // TODO It would be way better to actually set up a full proxy like we did for JavaVM but the 236 LOG(WARNING) << "Could not create jvmtiEnv to proxy!"; 317 ProxyJavaVM* proxy = new ProxyJavaVM(vm, agent_lib, map); local 320 return CallNextAgent(start, proxy, agent_options, reserved);
|
| /bionic/libc/kernel/uapi/linux/ |
| atmlec.h | 78 } proxy; member in union:atmlec_msg::__anon455
|