Home
last modified time | relevance | path

Searched refs:mSensorPrivacyManager (Results 1 – 12 of 12) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DIndividualSensorPrivacyControllerImpl.java37 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 DSensorPrivacyControllerImpl.java35 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 DBiometricCameraManagerImpl.java30 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 DFaceDetectClient.java53 @Nullable private SensorPrivacyManager mSensorPrivacyManager; field in FaceDetectClient
78 mSensorPrivacyManager = sensorPrivacyManager; in FaceDetectClient()
104 if (mSensorPrivacyManager != null in startHalOperation()
105 && mSensorPrivacyManager in startHalOperation()
H A DFaceAuthenticationClient.java77 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 DFaceAuthenticationClient.java67 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 DAuthController.java175 @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 DTestPhoneWindowManager.java128 @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 DDependency.java312 @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 DPhoneWindowManager.java420 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 DKeyguardUpdateMonitor.java419 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 DKeyguardUpdateMonitorTest.java251 private SensorPrivacyManager mSensorPrivacyManager; field in KeyguardUpdateMonitorTest
3528 mDreamManager, mDevicePolicyManager, mSensorPrivacyManager, mTelephonyManager, in TestableKeyguardUpdateMonitor()