Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DSensorPrivacyController.java22 public interface SensorPrivacyController extends interface
23 CallbackController<SensorPrivacyController.OnSensorPrivacyChangedListener> {
DSensorPrivacyControllerImpl.java32 public class SensorPrivacyControllerImpl implements SensorPrivacyController,
/frameworks/base/packages/SystemUI/src/com/android/systemui/tv/
DTvSystemUIModule.java70 import com.android.systemui.statusbar.policy.SensorPrivacyController;
121 static SensorPrivacyController provideSensorPrivacyController( in provideSensorPrivacyController()
123 SensorPrivacyController spC = new SensorPrivacyControllerImpl(sensorPrivacyManager); in provideSensorPrivacyController()
/frameworks/base/packages/SystemUI/src/com/android/systemui/dagger/
DSystemUIDefaultModule.java69 import com.android.systemui.statusbar.policy.SensorPrivacyController;
128 static SensorPrivacyController provideSensorPrivacyController( in provideSensorPrivacyController()
130 SensorPrivacyController spC = new SensorPrivacyControllerImpl(sensorPrivacyManager); in provideSensorPrivacyController()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DPhoneStatusBarPolicy.java71 import com.android.systemui.statusbar.policy.SensorPrivacyController;
147 private final SensorPrivacyController mSensorPrivacyController;
173 SensorPrivacyController sensorPrivacyController, IActivityManager iActivityManager, in PhoneStatusBarPolicy()
582 private final SensorPrivacyController.OnSensorPrivacyChangedListener mSensorPrivacyListener =
583 new SensorPrivacyController.OnSensorPrivacyChangedListener() {
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DDependency.java124 import com.android.systemui.statusbar.policy.SensorPrivacyController;
344 @Inject Lazy<SensorPrivacyController> mSensorPrivacyController;
549 mProviders.put(SensorPrivacyController.class, mSensorPrivacyController::get); in start()