Home
last modified time | relevance | path

Searched refs:mTrustManager (Results 1 – 18 of 18) sorted by relevance

/aosp14/frameworks/base/core/java/android/net/http/
H A DX509TrustManagerExtensions.java43 private final X509TrustManager mTrustManager; field in X509TrustManagerExtensions
56 mTrustManager = null; in X509TrustManagerExtensions()
63 mTrustManager = tm; in X509TrustManagerExtensions()
101 return (List<X509Certificate>) mCheckServerTrusted.invoke(mTrustManager, chain, in checkServerTrusted()
140 return (Boolean) mIsSameTrustConfiguration.invoke(mTrustManager, hostname1, hostname2); in isSameTrustConfiguration()
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/biometrics/
H A DPreAuthInfoTest.java64 ITrustManager mTrustManager; field in PreAuthInfoTest
74 when(mTrustManager.isDeviceSecure(anyInt(), anyInt())).thenReturn(true); in setup()
106 PreAuthInfo preAuthInfo = PreAuthInfo.create(mTrustManager, mDevicePolicyManager, in testFaceAuthentication_whenCameraPrivacyIsEnabled()
133 PreAuthInfo preAuthInfo = PreAuthInfo.create(mTrustManager, mDevicePolicyManager, in testFaceAuthentication_whenCameraPrivacyIsDisabledAndCameraIsAvailable()
160 PreAuthInfo preAuthInfo = PreAuthInfo.create(mTrustManager, mDevicePolicyManager, in testFaceAuthentication_whenCameraIsUnavailable()
H A DBiometricServiceTest.java149 ITrustManager mTrustManager; field in BiometricServiceTest
293 when(mTrustManager.isDeviceSecure(anyInt(), anyInt())) in testAuthenticate_credentialAllowedButNotSetup_returnsNoDeviceCredential()
314 when(mTrustManager.isDeviceSecure(anyInt(), anyInt())) in testAuthenticate_credentialAllowedAndSetup_callsSystemUI()
660 when(mTrustManager.isDeviceSecure(anyInt(), anyInt())) in testAuthenticate_noBiometrics_credentialAllowed()
730 when(mTrustManager.isDeviceSecure(anyInt(), anyInt())) in testAuthenticate_no_Biometrics_noCredential()
1342 when(mTrustManager.isDeviceSecure(anyInt(), anyInt())) in testCanAuthenticate_whenDeviceDoesNotHaveRequestedBiometricStrength()
1349 when(mTrustManager.isDeviceSecure(anyInt(), anyInt())) in testCanAuthenticate_whenDeviceDoesNotHaveRequestedBiometricStrength()
1362 when(mTrustManager.isDeviceSecure(anyInt(), anyInt())) in testCanAuthenticate_onlyCredentialRequested()
1368 when(mTrustManager.isDeviceSecure(anyInt(), anyInt())) in testCanAuthenticate_onlyCredentialRequested()
1396 when(mTrustManager.isDeviceSecure(anyInt(), anyInt())) in testCanAuthenticate_whenBiometricsNotEnabledForApps()
[all …]
H A DAuthSessionTest.java99 @Mock private ITrustManager mTrustManager; field in AuthSessionTest
606 return PreAuthInfo.create(mTrustManager, in createPreAuthInfo()
/aosp14/frameworks/base/core/java/android/security/net/config/
H A DApplicationConfig.java39 private X509TrustManager mTrustManager; field in ApplicationConfig
121 return mTrustManager; in getTrustManager()
178 mTrustManager = new RootTrustManager(this); in ensureInitialized()
H A DNetworkSecurityConfig.java48 private NetworkSecurityTrustManager mTrustManager; field in NetworkSecurityConfig
113 if (mTrustManager == null) { in getTrustManager()
114 mTrustManager = new NetworkSecurityTrustManager(this); in getTrustManager()
116 return mTrustManager; in getTrustManager()
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/
H A DMockLockSettingsContext.java46 private final TrustManager mTrustManager; field in MockLockSettingsContext
65 mTrustManager = trustManager; in MockLockSettingsContext()
93 return mTrustManager; in getSystemService()
/aosp14/frameworks/base/services/core/java/com/android/server/biometrics/sensors/fingerprint/hidl/
H A DFingerprint21UdfpsMock.java132 @NonNull private final TrustManager mTrustManager; field in Fingerprint21UdfpsMock
412 mTrustManager = context.getSystemService(TrustManager.class); in Fingerprint21UdfpsMock()
413 mTrustManager.registerTrustListener(this); in Fingerprint21UdfpsMock()
/aosp14/frameworks/base/core/java/android/app/
H A DKeyguardManager.java86 private final ITrustManager mTrustManager; field in KeyguardManager
616 mTrustManager = ITrustManager.Stub.asInterface( in KeyguardManager()
703 return mTrustManager.isDeviceLocked(userId, mContext.getAssociatedDisplayId()); in isDeviceLocked()
729 return mTrustManager.isDeviceSecure(userId, mContext.getAssociatedDisplayId()); in isDeviceSecure()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
H A DKeyguardUpdateMonitorTest.java219 private TrustManager mTrustManager; field in KeyguardUpdateMonitorTest
1514 when(mTrustManager.isTrustUsuallyManaged(eq(user))).thenReturn(true); in testTrustUsuallyManaged_whenTrustChanges()
1522 when(mTrustManager.isTrustUsuallyManaged(eq(user))).thenReturn(true); in testTrustUsuallyManaged_resetWhenUserIsRemoved()
2602 verify(mTrustManager).reportUserRequestedUnlock(eq(KeyguardUpdateMonitor.getCurrentUser()), in assistantVisible_requestActiveUnlock()
2622 verify(mTrustManager).reportUserRequestedUnlock(eq(KeyguardUpdateMonitor.getCurrentUser()), in fingerprintFailure_requestActiveUnlock_dismissKeyguard()
2646 verify(mTrustManager).reportUserRequestedUnlock(eq(KeyguardUpdateMonitor.getCurrentUser()), in faceNonBypassFailure_requestActiveUnlock_doesNotDismissKeyguard()
2670 verify(mTrustManager).reportUserRequestedUnlock(eq(KeyguardUpdateMonitor.getCurrentUser()), in faceBypassFailure_requestActiveUnlock_dismissKeyguard()
2692 verify(mTrustManager).reportUserRequestedUnlock(eq(KeyguardUpdateMonitor.getCurrentUser()), in faceNonBypassFailure_requestActiveUnlock_dismissKeyguard()
2797 verify(mTrustManager).reportUserRequestedUnlock(eq(KeyguardUpdateMonitor.getCurrentUser()), in unfoldWakeup_requestActiveUnlock_forceDismissKeyguard()
2822 verify(mTrustManager).reportUserRequestedUnlock(eq(KeyguardUpdateMonitor.getCurrentUser()), in unfoldWakeup_requestActiveUnlock_noDismissKeyguard()
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardUpdateMonitor.java409 private final TrustManager mTrustManager; field in KeyguardUpdateMonitor
782 boolean trustUsuallyManaged = mTrustManager.isTrustUsuallyManaged(userId); in onTrustManagedChanged()
950 mTrustManager.unlockedByBiometricForUser(userId, FINGERPRINT); in onFingerprintAuthenticated()
1226 mTrustManager.unlockedByBiometricForUser(userId, FACE); in onFaceAuthenticated()
2399 mTrustManager = trustManager; in KeyguardUpdateMonitor()
2592 mTrustManager.registerTrustListener(this); in KeyguardUpdateMonitor()
2657 boolean trustUsuallyManaged = mTrustManager.isTrustUsuallyManaged(userInfo.id); in KeyguardUpdateMonitor()
3599 boolean trustUsuallyManaged = mTrustManager.isTrustUsuallyManaged(userId); in handleUserSwitching()
4170 mTrustManager.clearAllBiometricRecognized(FINGERPRINT, unlockedUser); in clearBiometricRecognized()
4171 mTrustManager.clearAllBiometricRecognized(FACE, unlockedUser); in clearBiometricRecognized()
[all …]
/aosp14/frameworks/base/services/core/java/com/android/server/power/
H A DNotifier.java136 private final TrustManager mTrustManager; field in Notifier
205 mTrustManager = mContext.getSystemService(TrustManager.class); in Notifier()
1002 mTrustManager.setDeviceLockedForUser(userId, true /*locked*/); in lockProfile()
/aosp14/frameworks/base/services/core/java/com/android/server/biometrics/
H A DBiometricService.java118 ITrustManager mTrustManager; field in BiometricService
924 return PreAuthInfo.create(mTrustManager, mDevicePolicyManager, mSettingObserver, mSensors,
1073 mTrustManager = mInjector.getTrustManager();
1286 final PreAuthInfo preAuthInfo = PreAuthInfo.create(mTrustManager,
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/globalactions/
H A DGlobalActionsDialogLiteTest.java115 @Mock private TrustManager mTrustManager; field in GlobalActionsDialogLiteTest
167 mTrustManager, in setUp()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/
H A DKeyguardViewMediatorTest.java155 private @Mock TrustManager mTrustManager; field in KeyguardViewMediatorTest
989 mTrustManager, in createAndStartViewMediator()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DKeyguardViewMediator.java345 private final TrustManager mTrustManager; field in KeyguardViewMediator
1406 mTrustManager = trustManager;
2260 mTrustManager.setDeviceLockedForUser(userId, true);
3732 mTrustManager.reportKeyguardShowingChanged();
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/globalactions/
H A DGlobalActionsDialogLite.java208 private final TrustManager mTrustManager; field in GlobalActionsDialogLite
384 mTrustManager = trustManager; in GlobalActionsDialogLite()
1229 mTrustManager.setDeviceLockedForUser(id, true);
/aosp14/frameworks/base/boot/hiddenapi/
H A Dhiddenapi-max-target-o.txt7250 Landroid/app/KeyguardManager;->mTrustManager:Landroid/app/trust/ITrustManager;
32507 Landroid/net/http/X509TrustManagerExtensions;->mTrustManager:Ljavax/net/ssl/X509TrustManager;
48486 Landroid/security/net/config/ApplicationConfig;->mTrustManager:Ljavax/net/ssl/X509TrustManager;
48583 Landroid/security/net/config/NetworkSecurityConfig;->mTrustManager:Landroid/security/net/config/Net…