Lines Matching refs:fromCache
140 Error ComposerHandleCache::getHandle(uint32_t slot, bool fromCache, const native_handle_t* inHandle, in getHandle() argument
143 if (fromCache) { in getHandle()
157 Error ComposerLayerResource::getBuffer(uint32_t slot, bool fromCache, in getBuffer() argument
161 return mBufferCache.getHandle(slot, fromCache, inHandle, outHandle, outReplacedHandle); in getBuffer()
164 Error ComposerLayerResource::getSidebandStream(uint32_t slot, bool fromCache, in getSidebandStream() argument
168 return mSidebandStreamCache.getHandle(slot, fromCache, inHandle, outHandle, outReplacedHandle); in getSidebandStream()
194 Error ComposerDisplayResource::getClientTarget(uint32_t slot, bool fromCache, in getClientTarget() argument
198 return mClientTargetCache.getHandle(slot, fromCache, inHandle, outHandle, outReplacedHandle); in getClientTarget()
201 Error ComposerDisplayResource::getOutputBuffer(uint32_t slot, bool fromCache, in getOutputBuffer() argument
205 return mOutputBufferCache.getHandle(slot, fromCache, inHandle, outHandle, outReplacedHandle); in getOutputBuffer()
344 Error ComposerResources::getDisplayClientTarget(Display display, uint32_t slot, bool fromCache, in getDisplayClientTarget() argument
348 return getHandle(display, 0, slot, Cache::CLIENT_TARGET, fromCache, rawHandle, outBufferHandle, in getDisplayClientTarget()
352 Error ComposerResources::getDisplayOutputBuffer(Display display, uint32_t slot, bool fromCache, in getDisplayOutputBuffer() argument
356 return getHandle(display, 0, slot, Cache::OUTPUT_BUFFER, fromCache, rawHandle, outBufferHandle, in getDisplayOutputBuffer()
360 Error ComposerResources::getLayerBuffer(Display display, Layer layer, uint32_t slot, bool fromCache, in getLayerBuffer() argument
364 return getHandle(display, layer, slot, Cache::LAYER_BUFFER, fromCache, rawHandle, in getLayerBuffer()
412 bool fromCache, const native_handle_t* rawHandle, in getHandle() argument
419 if (!fromCache) { in getHandle()
443 error = displayResource->getClientTarget(slot, fromCache, importedHandle, outHandle, in getHandle()
447 error = displayResource->getOutputBuffer(slot, fromCache, importedHandle, outHandle, in getHandle()
451 error = layerResource->getBuffer(slot, fromCache, importedHandle, outHandle, in getHandle()
455 error = layerResource->getSidebandStream(slot, fromCache, importedHandle, outHandle, in getHandle()
474 if (!fromCache) { in getHandle()