Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DSensorPrivacyController.java22 public interface SensorPrivacyController extends interface
23 CallbackController<SensorPrivacyController.OnSensorPrivacyChangedListener> {
H A DSensorPrivacyControllerImpl.java33 SensorPrivacyController,
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/tv/
H A DTvSystemUIModule.java70 import com.android.systemui.statusbar.policy.SensorPrivacyController;
116 static SensorPrivacyController provideSensorPrivacyController( in provideSensorPrivacyController()
118 SensorPrivacyController spC = new SensorPrivacyControllerImpl(sensorPrivacyManager); in provideSensorPrivacyController()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/dagger/
H A DReferenceSystemUIModule.java69 import com.android.systemui.statusbar.policy.SensorPrivacyController;
126 static SensorPrivacyController provideSensorPrivacyController( in provideSensorPrivacyController()
128 SensorPrivacyController spC = new SensorPrivacyControllerImpl(sensorPrivacyManager); in provideSensorPrivacyController()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBarPolicy.java74 import com.android.systemui.statusbar.policy.SensorPrivacyController;
156 private final SensorPrivacyController mSensorPrivacyController;
183 SensorPrivacyController sensorPrivacyController, AlarmManager alarmManager, in PhoneStatusBarPolicy()
611 private final SensorPrivacyController.OnSensorPrivacyChangedListener mSensorPrivacyListener =
612 new SensorPrivacyController.OnSensorPrivacyChangedListener() {
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBarPolicyTest.kt47 import com.android.systemui.statusbar.policy.SensorPrivacyController
106 @Mock private lateinit var sensorPrivacyController: SensorPrivacyController
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DDependency.java119 import com.android.systemui.statusbar.policy.SensorPrivacyController;
326 @Inject Lazy<SensorPrivacyController> mSensorPrivacyController;
517 mProviders.put(SensorPrivacyController.class, mSensorPrivacyController::get); in start()