Home
last modified time | relevance | path

Searched refs:TrustManager (Results 1 – 25 of 45) sorted by relevance

12

/aosp14/frameworks/base/core/java/android/security/net/config/
H A DRootTrustManagerFactorySpi.java29 import javax.net.ssl.TrustManager;
61 public TrustManager[] engineGetTrustManagers() { in engineGetTrustManagers()
65 return new TrustManager[] { mApplicationConfig.getTrustManager() }; in engineGetTrustManagers()
/aosp14/frameworks/base/core/tests/coretests/src/android/net/http/
H A DX509TrustManagerExtensionsTest.java22 import javax.net.ssl.TrustManager;
63 TrustManager[] tms = tmf.getTrustManagers(); in testNormalUseCase()
64 for (TrustManager tm : tms) { in testNormalUseCase()
/aosp14/frameworks/base/tests/TrustTests/src/android/trust/test/lib/
H A DLockStateTrackingRule.kt19 import android.app.trust.TrustManager
41 val trustManager = context.getSystemService(TrustManager::class.java) as TrustManager
H A DTrustAgentRule.kt19 import android.app.trust.TrustManager
43 private val trustManager = context.getSystemService(TrustManager::class.java) as TrustManager
H A DTestTrustListener.kt19 import android.app.trust.TrustManager.TrustListener
/aosp14/frameworks/base/tests/TrustTests/src/android/trust/test/
H A DUserUnlockRequestTest.kt18 import android.app.trust.TrustManager
42 private val trustManager = context.getSystemService(TrustManager::class.java) as TrustManager
H A DCanUnlockWithActiveUnlockTest.kt19 import android.app.trust.TrustManager
51 private val trustManager = context.getSystemService(TrustManager::class.java) as TrustManager
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/
H A DMockLockSettingsContext.java22 import android.app.trust.TrustManager;
46 private final TrustManager mTrustManager;
55 StorageManager storageManager, TrustManager trustManager, in MockLockSettingsContext()
H A DBaseLockSettingsServiceTests.java34 import android.app.trust.TrustManager;
150 mDevicePolicyManager, mock(StorageManager.class), mock(TrustManager.class), in setUp_baseServices()
H A DLockSettingsStorageTests.java33 import android.app.trust.TrustManager;
112 mock(StorageManager.class), mock(TrustManager.class), mock(KeyguardManager.class), in setUp()
/aosp14/frameworks/base/core/java/android/net/
H A DSSLCertificateSocketFactory.java50 import javax.net.ssl.TrustManager;
106 private static final TrustManager[] INSECURE_TRUST_MANAGER = new TrustManager[] {
119 private TrustManager[] mTrustManagers = null;
254 KeyManager[] keyManagers, TrustManager[] trustManagers) { in makeSocketFactory()
297 public void setTrustManagers(TrustManager[] trustManager) { in setTrustManagers()
/aosp14/frameworks/base/core/tests/coretests/src/android/net/
H A DSSLSessionCacheTest.java36 import javax.net.ssl.TrustManager;
71 protected void engineInit(KeyManager[] keyManagers, TrustManager[] trustManagers, in engineInit()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/data/repository/
H A DTrustRepository.kt19 import android.app.trust.TrustManager
61 private val trustManager: TrustManager,
71 object : TrustManager.TrustListener {
/aosp14/frameworks/base/core/java/org/apache/http/conn/ssl/
H A DSSLSocketFactory.java59 import javax.net.ssl.TrustManager;
207 TrustManager[] trustmanagers = null; in SSLSocketFactory()
278 private static TrustManager[] createTrustManagers(final KeyStore keystore) in createTrustManagers()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/data/repository/
H A DTrustRepositoryTest.kt19 import android.app.trust.TrustManager
51 @Mock private lateinit var trustManager: TrustManager
52 @Captor private lateinit var listener: ArgumentCaptor<TrustManager.TrustListener>
/aosp14/frameworks/base/services/core/java/com/android/server/biometrics/sensors/fingerprint/hidl/
H A DFingerprint21UdfpsMock.java21 import android.app.trust.TrustManager;
104 public class Fingerprint21UdfpsMock extends Fingerprint21 implements TrustManager.TrustListener {
132 @NonNull private final TrustManager mTrustManager;
412 mTrustManager = context.getSystemService(TrustManager.class); in Fingerprint21UdfpsMock()
/aosp14/frameworks/base/core/java/android/app/trust/
H A DTrustManager.java41 public class TrustManager { class
58 public TrustManager(IBinder b) { in TrustManager() method in TrustManager
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/dagger/
H A DKeyguardModule.java19 import android.app.trust.TrustManager;
119 TrustManager trustManager, in newKeyguardViewMediator()
/aosp14/frameworks/base/tests/NetworkSecurityConfigTest/src/android/security/net/config/
H A DTestUtils.java26 import javax.net.ssl.TrustManager;
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
H A DKeyguardIndicationControllerBaseTest.java40 import android.app.trust.TrustManager;
198 mContext.addMockSystemService(Context.TRUST_SERVICE, mock(TrustManager.class)); in setUp()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DEventLogTags.logtags18 …rrentlyInsecure: 1: No secure unlock method set up (!secure), or trusted environment (TrustManager)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/dagger/
H A DFrameworkServicesModule.java40 import android.app.trust.TrustManager;
573 static TrustManager provideTrustManager(Context context) { in provideTrustManager()
574 return context.getSystemService(TrustManager.class); in provideTrustManager()
/aosp14/frameworks/base/tests/TrustTests/
H A DREADME.md31 2. `TrustManager` which is the interface the rest of the system (e.g. SystemUI) has to the
/aosp14/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternUtils.java36 import android.app.trust.TrustManager;
326 private TrustManager getTrustManager() { in getTrustManager()
327 TrustManager trust = (TrustManager) mContext.getSystemService(Context.TRUST_SERVICE); in getTrustManager()
/aosp14/frameworks/base/services/core/java/com/android/server/power/
H A DNotifier.java24 import android.app.trust.TrustManager;
136 private final TrustManager mTrustManager;
205 mTrustManager = mContext.getSystemService(TrustManager.class); in Notifier()

12