Home
last modified time | relevance | path

Searched refs:Tunable (Results 1 – 25 of 32) sorted by relevance

12

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
H A DTunerServiceImpl.java79 private final ConcurrentHashMap<String, Set<Tunable>> mTunableLookup =
82 private final HashSet<Tunable> mTunables = LeakDetector.ENABLED ? new HashSet<>() : null;
191 public void addTunable(Tunable tunable, String... keys) { in addTunable()
197 private void addTunable(Tunable tunable, String key) { in addTunable()
199 mTunableLookup.put(key, new ArraySet<Tunable>()); in addTunable()
218 public void removeTunable(Tunable tunable) { in removeTunable()
219 for (Set<Tunable> list : mTunableLookup.values()) { in removeTunable()
239 Set<Tunable> tunables = mTunableLookup.get(key); in reloadSetting()
244 for (Tunable tunable : tunables) { in reloadSetting()
253 for (Tunable tunable : mTunableLookup.get(key)) { in reloadAll()
H A DTunerService.java38 public abstract void addTunable(Tunable tunable, String... keys); in addTunable()
39 public abstract void removeTunable(Tunable tunable); in removeTunable()
51 public interface Tunable { interface in TunerService
H A DTunerSwitch.java13 import com.android.systemui.tuner.TunerService.Tunable;
15 public class TunerSwitch extends SwitchPreference implements Tunable {
H A DStatusBarSwitch.java31 import com.android.systemui.tuner.TunerService.Tunable;
35 public class StatusBarSwitch extends SwitchPreference implements Tunable {
H A DTunablePadding.java23 import com.android.systemui.tuner.TunerService.Tunable;
30 public class TunablePadding implements Tunable {
H A DNavBarTuner.java50 import com.android.systemui.tuner.TunerService.Tunable;
74 private final ArrayList<Tunable> mTunables = new ArrayList<>();
103 private void addTunable(Tunable tunable, String... keys) { in addTunable()
H A DShortcutPicker.java35 import com.android.systemui.tuner.TunerService.Tunable;
40 public class ShortcutPicker extends PreferenceFragment implements Tunable {
H A DLockscreenFragment.java50 import com.android.systemui.tuner.TunerService.Tunable;
68 private final ArrayList<Tunable> mTunables = new ArrayList<>();
129 private void addTunable(Tunable t, String... keys) { in addTunable()
H A DBatteryPreference.java32 public class BatteryPreference extends DropDownPreference implements TunerService.Tunable {
H A DClockPreference.java27 public class ClockPreference extends DropDownPreference implements TunerService.Tunable {
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/utils/leaks/
H A DFakeTunerService.java23 private final BaseLeakChecker<Tunable> mBaseLeakChecker;
32 public void addTunable(Tunable tunable, String... keys) { in addTunable()
40 public void removeTunable(Tunable tunable) { in removeTunable()
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
H A DKeyguardSliceViewControllerTest.java78 verify(mTunerService).addTunable(any(TunerService.Tunable.class), anyString()); in onAttachedToWindow_registersListeners()
93 verify(mTunerService).removeTunable(any(TunerService.Tunable.class)); in onDetachedFromWindow_unregistersListeners()
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
H A DExtensionControllerImplTest.java41 import com.android.systemui.tuner.TunerService.Tunable;
180 ArgumentCaptor<Tunable> tunable = ArgumentCaptor.forClass(Tunable.class); in testSortOrder()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/battery/
H A DBatteryMeterViewController.java60 private final TunerService.Tunable mTunable = new TunerService.Tunable() {
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DExtensionControllerImpl.java28 import com.android.systemui.tuner.TunerService.Tunable;
268 private class TunerItem<T> implements Item<T>, Tunable {
H A DClock.java56 import com.android.systemui.tuner.TunerService.Tunable;
68 Tunable,
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/interruption/
H A DBypassHeadsUpNotifier.kt65 TunerService.Tunable { _, _ ->
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DOperatorNameViewController.java148 private final TunerService.Tunable mTunable = (key, newValue) -> update();
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarIconControllerImpl.java45 import com.android.systemui.tuner.TunerService.Tunable;
61 public class StatusBarIconControllerImpl extends StatusBarIconList implements Tunable,
H A DKeyguardBypassController.kt139 tunerService.addTunable(object : TunerService.Tunable {
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumeDialogComponent.java51 public class VolumeDialogComponent implements VolumeComponent, TunerService.Tunable,
/aosp12/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardSliceViewController.java74 TunerService.Tunable mTunable = (key, newValue) -> setupUri(newValue);
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSTileHost.java59 import com.android.systemui.tuner.TunerService.Tunable;
79 public class QSTileHost implements QSHost, Tunable, PluginListener<QSFactory>, Dumpable {
H A DQSAnimator.java39 import com.android.systemui.tuner.TunerService.Tunable;
53 OnAttachStateChangeListener, Tunable {
H A DQSPanel.java48 import com.android.systemui.tuner.TunerService.Tunable;
54 public class QSPanel extends LinearLayout implements Tunable {

12