/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/ |
H A D | ClockPreference.java | 27 public class ClockPreference extends DropDownPreference implements TunerService.Tunable { 50 Dependency.get(TunerService.class).addTunable(this, StatusBarIconController.ICON_HIDE_LIST, in onAttached() 56 Dependency.get(TunerService.class).removeTunable(this); in onDetached() 87 Dependency.get(TunerService.class).setValue(Clock.CLOCK_SECONDS, SECONDS.equals(value) ? 1 in persistString() 94 Dependency.get(TunerService.class).setValue(StatusBarIconController.ICON_HIDE_LIST, in persistString()
|
H A D | TunablePadding.java | 23 import com.android.systemui.tuner.TunerService.Tunable; 41 private final TunerService mTunerService; 43 private TunablePadding(String key, int def, int flags, View view, TunerService tunerService) { in TunablePadding() 83 private final TunerService mTunerService; 88 public TunablePaddingService(TunerService tunerService) { in TunablePaddingService()
|
H A D | TunerSwitch.java | 13 import com.android.systemui.tuner.TunerService.Tunable; 32 Dependency.get(TunerService.class).addTunable(this, getKey().split(",")); in onAttached() 37 Dependency.get(TunerService.class).removeTunable(this); in onDetached() 43 setChecked(TunerService.parseIntegerSwitch(newValue, mDefault)); in onTuningChanged()
|
H A D | BatteryPreference.java | 32 public class BatteryPreference extends DropDownPreference implements TunerService.Tunable { 55 Dependency.get(TunerService.class).addTunable(this, StatusBarIconController.ICON_HIDE_LIST); in onAttached() 60 Dependency.get(TunerService.class).removeTunable(this); in onDetached() 95 Dependency.get(TunerService.class).setValue(StatusBarIconController.ICON_HIDE_LIST, in persistString()
|
H A D | TunerService.java | 28 public abstract class TunerService { class 60 public TunerService(Context context) { in TunerService() method in TunerService 68 Dependency.get(TunerService.class).clearAll(); in onReceive()
|
H A D | StatusBarSwitch.java | 31 import com.android.systemui.tuner.TunerService.Tunable; 46 Dependency.get(TunerService.class).addTunable(this, StatusBarIconController.ICON_HIDE_LIST); in onAttached() 51 Dependency.get(TunerService.class).removeTunable(this); in onDetached()
|
H A D | NavBarTuner.java | 50 import com.android.systemui.tuner.TunerService.Tunable; 100 mTunables.forEach(t -> Dependency.get(TunerService.class).removeTunable(t)); in onDestroy() 105 Dependency.get(TunerService.class).addTunable(tunable, keys); in addTunable() 119 Dependency.get(TunerService.class).setValue(NAV_BAR_VIEWS, val); in bindLayout() 216 Dependency.get(TunerService.class).setValue(setting, button); in setValue()
|
H A D | ShortcutPicker.java | 35 import com.android.systemui.tuner.TunerService.Tunable; 45 private TunerService mTunerService; 101 mTunerService = Dependency.get(TunerService.class); in onCreatePreferences()
|
H A D | TunerFragment.java | 58 private final TunerService mTunerService; 62 public TunerFragment(TunerService tunerService) { in TunerFragment()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/ |
H A D | VolumeDialogComponent.java | 40 import com.android.systemui.tuner.TunerService; 52 public class VolumeDialogComponent implements VolumeComponent, TunerService.Tunable, 87 TunerService tunerService, in VolumeDialogComponent() 133 TunerService.parseIntegerSwitch(newValue, mDefaultVolumeDownToEnterSilent); in onTuningChanged() 136 TunerService.parseIntegerSwitch(newValue, DEFAULT_VOLUME_UP_TO_EXIT_SILENT); in onTuningChanged() 139 TunerService.parseIntegerSwitch(newValue, DEFAULT_DO_NOT_DISTURB_WHEN_SILENT); in onTuningChanged()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
H A D | OperatorNameViewController.java | 35 import com.android.systemui.tuner.TunerService; 47 private final TunerService mTunerService; 55 TunerService tunerService, in OperatorNameViewController() 107 private final TunerService mTunerService; 115 TunerService tunerService, in Factory() 159 private final TunerService.Tunable mTunable = (key, newValue) -> update();
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/ |
H A D | KeyguardSliceViewControllerTest.java | 36 import com.android.systemui.tuner.TunerService; 53 private TunerService mTunerService; 96 verify(mTunerService).addTunable(any(TunerService.Tunable.class), anyString()); in onAttachedToWindow_registersListeners() 115 verify(mTunerService).removeTunable(any(TunerService.Tunable.class)); in onDetachedFromWindow_unregistersListeners()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/dagger/ |
H A D | TunerModule.java | 19 import com.android.systemui.tuner.TunerService; 30 TunerService provideTunerService(TunerServiceImpl controllerImpl); in provideTunerService()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/battery/ |
H A D | BatteryMeterViewController.java | 42 import com.android.systemui.tuner.TunerService; 52 private final TunerService mTunerService; 71 private final TunerService.Tunable mTunable = new TunerService.Tunable() { 139 TunerService tunerService, in BatteryMeterViewController()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/ |
H A D | PulsingGestureListener.kt | 35 import com.android.systemui.tuner.TunerService 36 import com.android.systemui.tuner.TunerService.Tunable 59 tunerService: TunerService,
|
/aosp14/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/utils/leaks/ |
H A D | FakeTunerService.java | 19 import com.android.systemui.tuner.TunerService; 21 public class FakeTunerService extends TunerService {
|
H A D | LeakCheckedTest.java | 38 import com.android.systemui.tuner.TunerService; 68 TunerService.class, 133 } else if (cls == TunerService.class) { in getLeakChecker()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
H A D | KeyguardSliceViewController.java | 47 import com.android.systemui.tuner.TunerService; 65 private final TunerService mTunerService; 74 TunerService.Tunable mTunable = (key, newValue) -> setupUri(newValue); 111 TunerService tunerService, in KeyguardSliceViewController()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/ |
H A D | ExtensionControllerImplTest.java | 40 import com.android.systemui.tuner.TunerService; 41 import com.android.systemui.tuner.TunerService.Tunable; 62 private TunerService mTunerService; 69 mTunerService = mDependency.injectMockDependency(TunerService.class); in setup()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
H A D | StatusBarSignalPolicy.java | 32 import com.android.systemui.tuner.TunerService; 33 import com.android.systemui.tuner.TunerService.Tunable; 62 private final TunerService mTunerService; 82 TunerService tunerService in StatusBarSignalPolicy()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
H A D | QSPanelController.java | 42 import com.android.systemui.tuner.TunerService; 53 private final TunerService mTunerService; 74 QSPanelController(QSPanel view, TunerService tunerService, in QSPanelController()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
H A D | StatusBarIconControllerTest.java | 50 import com.android.systemui.tuner.TunerService; 108 mock(TunerService.class), in testRemoveIcon_ignoredForNewPipeline() 136 mock(TunerService.class), in testRemoveAllIconsForSlot_ignoredForNewPipeline()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
H A D | ExtensionControllerImpl.java | 27 import com.android.systemui.tuner.TunerService; 28 import com.android.systemui.tuner.TunerService.Tunable; 53 private final TunerService mTunerService; 63 TunerService tunerService, in ExtensionControllerImpl()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/shared/data/repository/ |
H A D | ConnectivityRepository.kt | 49 import com.android.systemui.tuner.TunerService 96 tunerService: TunerService, 112 object : TunerService.Tunable {
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shade/ |
H A D | PulsingGestureListenerTest.kt | 39 import com.android.systemui.tuner.TunerService 40 import com.android.systemui.tuner.TunerService.Tunable 67 private lateinit var tunerService: TunerService
|