Home
last modified time | relevance | path

Searched refs:stopLayer (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/core/java/android/view/
DCompositionSamplingListener.java66 int displayId, SurfaceControl stopLayer, Rect samplingArea) { in register() argument
72 long nativeStopLayerObject = stopLayer != null ? stopLayer.mNativeObject : 0; in register()
/frameworks/base/core/jni/
Dandroid_view_CompositionSamplingListener.cpp93 auto stopLayer = reinterpret_cast<SurfaceControl*>(stopLayerObj); in nativeRegister() local
94 sp<IBinder> stopLayerHandle = stopLayer != nullptr ? stopLayer->getHandle() : nullptr; in nativeRegister()
/frameworks/native/services/surfaceflinger/
DRegionSamplingThread.h72 void addListener(const Rect& samplingArea, const wp<Layer>& stopLayer,
87 wp<Layer> stopLayer; member
DRegionSamplingThread.cpp202 void RegionSamplingThread::addListener(const Rect& samplingArea, const wp<Layer>& stopLayer, in addListener() argument
207 mDescriptors.emplace(wp<IBinder>(asBinder), Descriptor{samplingArea, stopLayer, listener}); in addListener()
383 for (const auto& [area, stopLayer, listener] : descriptors) { in captureSample()
384 if (layer == stopLayer.promote().get()) { in captureSample()
402 for (const auto& [area, stopLayer, listener] : descriptors) { in captureSample()
DSurfaceFlinger.cpp1485 const wp<Layer> stopLayer = fromHandle(stopLayerHandle); in addRegionSamplingListener() local
1486 mRegionSamplingThread->addListener(samplingArea, stopLayer, listener); in addRegionSamplingListener()