Home
last modified time | relevance | path

Searched refs:mTunables (Results 1 – 7 of 7) sorted by relevance

/aosp12/frameworks/native/services/surfaceflinger/CompositionEngine/src/planner/
H A DFlattener.cpp64 : mRenderEngine(renderEngine), mTunables(tunables), mTexturePool(mRenderEngine) {} in Flattener()
120 if (renderDeadline && mTunables.mRenderScheduling) { in renderCachedSets()
122 now + mTunables.mRenderScheduling->cachedSetRenderDuration; in renderCachedSets()
127 mTunables.mRenderScheduling->maxDeferRenderAttempts) { in renderCachedSets()
413 now - currentSet->getLastUpdate() > mTunables.mActiveLayerTimeout; in findCandidateRuns()
516 if (mTunables.mEnableHolePunch && bestRun->getHolePunchCandidate() && in buildCachedSets()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
H A DTunerServiceImpl.java82 private final HashSet<Tunable> mTunables = LeakDetector.ENABLED ? new HashSet<>() : null; field in TunerServiceImpl
203 mTunables.add(tunable); in addTunable()
204 mLeakDetector.trackCollection(mTunables, "TunerService.mTunables"); in addTunable()
223 mTunables.remove(tunable); in removeTunable()
H A DNavBarTuner.java74 private final ArrayList<Tunable> mTunables = new ArrayList<>(); field in NavBarTuner
100 mTunables.forEach(t -> Dependency.get(TunerService.class).removeTunable(t)); in onDestroy()
104 mTunables.add(tunable); in addTunable()
H A DLockscreenFragment.java68 private final ArrayList<Tunable> mTunables = new ArrayList<>(); field in LockscreenFragment
84 mTunables.forEach(t -> mTunerService.removeTunable(t)); in onDestroy()
130 mTunables.add(t); in addTunable()
/aosp12/frameworks/native/services/surfaceflinger/
H A DRegionSamplingThread.cpp102 mTunables(tunables), in RegionSamplingThread()
106 mTunables.mSamplingTimerTimeout), in RegionSamplingThread()
166 if (mLastSampleTime + mTunables.mSamplingPeriod > now) { in doSample()
177 if (samplingDeadline.has_value() && now + mTunables.mSamplingDuration > *samplingDeadline) { in doSample()
H A DRegionSamplingThread.h108 const TimingTunables mTunables; variable
/aosp12/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/planner/
H A DFlattener.h201 const Tunables mTunables; variable