Searched defs:mTunables (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
H A DNavBarTuner.java72 private final ArrayList<Tunable> mTunables = new ArrayList<>(); field in class:NavBarTuner
98 mTunables.forEach(t -> Dependency.get(TunerService.class).removeTunable(t));
102 mTunables.add(tunable);
H A DTunerServiceImpl.java66 private final HashSet<Tunable> mTunables = LeakDetector.ENABLED ? new HashSet<>() : null; field in class:TunerServiceImpl
167 mTunables.add(tunable);
168 Dependency.get(LeakDetector.class).trackCollection(mTunables, "TunerService.mTunables");
186 mTunables.remove(tunable);
H A DLockscreenFragment.java76 private final ArrayList<Tunable> mTunables = new ArrayList<>(); field in class:LockscreenFragment
92 mTunables.forEach(t -> mTunerService.removeTunable(t));
138 mTunables.add(t);

Completed in 218 milliseconds