Home
last modified time | relevance | path

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

/frameworks/native/services/surfaceflinger/CompositionEngine/src/planner/
DFlattener.cpp76 : mRenderEngine(renderEngine), mTunables(tunables), mTexturePool(mRenderEngine) {} in Flattener()
133 if (renderDeadline && mTunables.mRenderScheduling) { in renderCachedSets()
135 now + mTunables.mRenderScheduling->cachedSetRenderDuration; in renderCachedSets()
140 mTunables.mRenderScheduling->maxDeferRenderAttempts) { in renderCachedSets()
426 bool layerIsInactive = now - currentSet->getLastUpdate() > mTunables.mActiveLayerTimeout; in findCandidateRuns()
536 if (mTunables.mEnableHolePunch && bestRun->getHolePunchCandidate() && in buildCachedSets()
/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
DTunerServiceImpl.java89 private final HashSet<Tunable> mTunables = LeakDetector.ENABLED ? new HashSet<>() : null; field in TunerServiceImpl
213 mTunables.add(tunable); in addTunable()
214 mLeakDetector.trackCollection(mTunables, "TunerService.mTunables"); in addTunable()
233 mTunables.remove(tunable); in removeTunable()
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()
DLockscreenFragment.java70 private final ArrayList<Tunable> mTunables = new ArrayList<>(); field in LockscreenFragment
89 mTunables.forEach(t -> mTunerService.removeTunable(t)); in onDestroy()
135 mTunables.add(t); in addTunable()
/frameworks/native/services/surfaceflinger/
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()
DRegionSamplingThread.h106 const TimingTunables mTunables; variable
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/planner/
DFlattener.h233 const Tunables mTunables; variable