Searched refs:trustCertInfo (Results 1 – 2 of 2) sorted by relevance
893 Map<String, byte[]> trustCertInfo = passpointConfig.getTrustRootCertList(); in retrieveTrustRootCerts() local894 if (trustCertInfo == null || trustCertInfo.isEmpty()) { in retrieveTrustRootCerts()901 allTrustCerts.put(OsuServerConnection.TRUST_CERT_TYPE_AAA, trustCertInfo); in retrieveTrustRootCerts()906 trustCertInfo = new HashMap<>(); in retrieveTrustRootCerts()907 trustCertInfo.put( in retrieveTrustRootCerts()911 allTrustCerts.put(OsuServerConnection.TRUST_CERT_TYPE_REMEDIATION, trustCertInfo); in retrieveTrustRootCerts()924 trustCertInfo = new HashMap<>(); in retrieveTrustRootCerts()925 trustCertInfo.put( in retrieveTrustRootCerts()930 allTrustCerts.put(OsuServerConnection.TRUST_CERT_TYPE_POLICY, trustCertInfo); in retrieveTrustRootCerts()
270 Map<String, byte[]> trustCertInfo = new HashMap<>(); in setUp() local271 trustCertInfo.put("https://testurl.com", "testData".getBytes()); in setUp()272 when(mPasspointConfiguration.getTrustRootCertList()).thenReturn(trustCertInfo); in setUp()