Searched refs:trustCertInfo (Results 1 – 2 of 2) sorted by relevance
915 Map<String, byte[]> trustCertInfo = passpointConfig.getTrustRootCertList(); in retrieveTrustRootCerts() local916 if (trustCertInfo == null || trustCertInfo.isEmpty()) { in retrieveTrustRootCerts()923 allTrustCerts.put(OsuServerConnection.TRUST_CERT_TYPE_AAA, trustCertInfo); in retrieveTrustRootCerts()928 trustCertInfo = new HashMap<>(); in retrieveTrustRootCerts()929 trustCertInfo.put( in retrieveTrustRootCerts()933 allTrustCerts.put(OsuServerConnection.TRUST_CERT_TYPE_REMEDIATION, trustCertInfo); in retrieveTrustRootCerts()946 trustCertInfo = new HashMap<>(); in retrieveTrustRootCerts()947 trustCertInfo.put( in retrieveTrustRootCerts()952 allTrustCerts.put(OsuServerConnection.TRUST_CERT_TYPE_POLICY, trustCertInfo); in retrieveTrustRootCerts()
267 Map<String, byte[]> trustCertInfo = new HashMap<>(); in setUp() local268 trustCertInfo.put("https://testurl.com", "testData".getBytes()); in setUp()269 when(mPasspointConfiguration.getTrustRootCertList()).thenReturn(trustCertInfo); in setUp()