/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
H A D | IndividualSensorPrivacyControllerImpl.java | 37 private final @NonNull SensorPrivacyManager mSensorPrivacyManager; field in IndividualSensorPrivacyControllerImpl 45 mSensorPrivacyManager = sensorPrivacyManager; in IndividualSensorPrivacyControllerImpl() 50 mSensorPrivacyManager.addSensorPrivacyListener( in init() 65 boolean softwarePrivacyEnabled = mSensorPrivacyManager.isSensorPrivacyEnabled( in init() 67 boolean hardwarePrivacyEnabled = mSensorPrivacyManager.isSensorPrivacyEnabled( in init() 76 return mSensorPrivacyManager.supportsSensorToggle(sensor); in supportsSensorToggle() 91 mSensorPrivacyManager.setSensorPrivacyForProfileGroup(source, sensor, blocked); in setSensorBlocked() 96 mSensorPrivacyManager.suppressSensorPrivacyReminders(sensor, suppress); in suppressSensorPrivacyReminders() 101 return mSensorPrivacyManager.requiresAuthentication(); in requiresAuthentication()
|
H A D | SensorPrivacyControllerImpl.java | 35 private SensorPrivacyManager mSensorPrivacyManager; field in SensorPrivacyControllerImpl 44 mSensorPrivacyManager = sensorPrivacyManager; in SensorPrivacyControllerImpl() 49 mSensorPrivacyEnabled = mSensorPrivacyManager.isAllSensorPrivacyEnabled(); in init() 50 mSensorPrivacyManager.addAllSensorPrivacyListener(this); in init()
|
/aosp14/frameworks/base/services/core/java/com/android/server/biometrics/ |
H A D | BiometricCameraManagerImpl.java | 30 private final SensorPrivacyManager mSensorPrivacyManager; field in BiometricCameraManagerImpl 49 mSensorPrivacyManager = sensorPrivacyManager; in BiometricCameraManagerImpl() 65 return mSensorPrivacyManager != null && mSensorPrivacyManager in isCameraPrivacyEnabled()
|
/aosp14/frameworks/base/services/core/java/com/android/server/biometrics/sensors/face/aidl/ |
H A D | FaceDetectClient.java | 53 @Nullable private SensorPrivacyManager mSensorPrivacyManager; field in FaceDetectClient 78 mSensorPrivacyManager = sensorPrivacyManager; in FaceDetectClient() 104 if (mSensorPrivacyManager != null in startHalOperation() 105 && mSensorPrivacyManager in startHalOperation()
|
H A D | FaceAuthenticationClient.java | 77 private SensorPrivacyManager mSensorPrivacyManager; field in FaceAuthenticationClient 117 mSensorPrivacyManager = sensorPrivacyManager; in FaceAuthenticationClient() 147 if (mSensorPrivacyManager != null in startHalOperation() 148 && mSensorPrivacyManager in startHalOperation()
|
/aosp14/frameworks/base/services/core/java/com/android/server/biometrics/sensors/face/hidl/ |
H A D | FaceAuthenticationClient.java | 67 private SensorPrivacyManager mSensorPrivacyManager; field in FaceAuthenticationClient 86 mSensorPrivacyManager = context.getSystemService(SensorPrivacyManager.class); in FaceAuthenticationClient() 115 if (mSensorPrivacyManager != null in startHalOperation() 116 && mSensorPrivacyManager in startHalOperation()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ |
H A D | AuthController.java | 175 @NonNull private final SensorPrivacyManager mSensorPrivacyManager; field in AuthController 835 mSensorPrivacyManager = context.getSystemService(SensorPrivacyManager.class); in AuthController() 1083 && mSensorPrivacyManager.isSensorPrivacyEnabled( in onBiometricError()
|
/aosp14/frameworks/base/services/tests/wmtests/src/com/android/server/policy/ |
H A D | TestPhoneWindowManager.java | 128 @Mock private SensorPrivacyManager mSensorPrivacyManager; field in TestPhoneWindowManager 229 doReturn(mSensorPrivacyManager).when(mContext).getSystemService( in setUp()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
H A D | Dependency.java | 312 @Inject Lazy<SensorPrivacyManager> mSensorPrivacyManager; field in Dependency 377 mProviders.put(SensorPrivacyManager.class, mSensorPrivacyManager::get); in start()
|
/aosp14/frameworks/base/services/core/java/com/android/server/policy/ |
H A D | PhoneWindowManager.java | 420 SensorPrivacyManager mSensorPrivacyManager; field in PhoneWindowManager 2049 mSensorPrivacyManager = mContext.getSystemService(SensorPrivacyManager.class); 3442 if (mSensorPrivacyManager.supportsSensorToggle( 3445 boolean isEnabled = mSensorPrivacyManager.isSensorPrivacyEnabled( 3449 mSensorPrivacyManager.setSensorPrivacy(SensorPrivacyManager.Sensors.MICROPHONE,
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
H A D | KeyguardUpdateMonitor.java | 419 private final SensorPrivacyManager mSensorPrivacyManager; field in KeyguardUpdateMonitor 1359 boolean cameraPrivacyEnabled = mSensorPrivacyManager.isSensorPrivacyEnabled( in handleFaceError() 2394 mSensorPrivacyManager = sensorPrivacyManager; in KeyguardUpdateMonitor()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/ |
H A D | KeyguardUpdateMonitorTest.java | 251 private SensorPrivacyManager mSensorPrivacyManager; field in KeyguardUpdateMonitorTest 3528 mDreamManager, mDevicePolicyManager, mSensorPrivacyManager, mTelephonyManager, in TestableKeyguardUpdateMonitor()
|