Searched refs:homeSp (Results 1 – 7 of 7) sorted by relevance
/cts/tests/tests/wifi/src/android/net/wifi/passpoint/cts/ |
D | HomeSpTest.java | 36 HomeSp homeSp = new HomeSp(); in testAnyOis() local 37 assertNull(homeSp.getMatchAnyOis()); in testAnyOis() 39 homeSp.setMatchAnyOis(ois); in testAnyOis() 40 final long[] profileOis = homeSp.getMatchAnyOis(); in testAnyOis() 48 HomeSp homeSp = new HomeSp(); in testAllOis() local 49 assertNull(homeSp.getMatchAllOis()); in testAllOis() 51 homeSp.setMatchAllOis(ois); in testAllOis() 52 final long[] profileOis = homeSp.getMatchAllOis(); in testAllOis() 60 HomeSp homeSp = new HomeSp(); in testOtherHomePartners() local 62 homeSp.setOtherHomePartnersList(homePartners); in testOtherHomePartners() [all …]
|
D | PasspointConfigurationTest.java | 65 HomeSp homeSp = config1.getHomeSp(); in testUniqueIdSameHomeSpSameFqdn() local 66 homeSp.setMatchAnyOis(new long[]{0x1000, 0x2000}); in testUniqueIdSameHomeSpSameFqdn() 70 homeSp = config2.getHomeSp(); in testUniqueIdSameHomeSpSameFqdn() 72 homeSp.setRoamingConsortiumOis(new long[]{0xaa, 0xbb}); in testUniqueIdSameHomeSpSameFqdn() 73 homeSp.setFriendlyName("Some other name"); in testUniqueIdSameHomeSpSameFqdn() 74 homeSp.setOtherHomePartnersList(Arrays.asList("other-provider1", "other-provider2")); in testUniqueIdSameHomeSpSameFqdn() 75 homeSp.setMatchAllOis(new long[]{0x1000, 0x2000}); in testUniqueIdSameHomeSpSameFqdn() 76 config2.setHomeSp(homeSp); in testUniqueIdSameHomeSpSameFqdn() 90 HomeSp homeSp = config2.getHomeSp(); in testUniqueIdDifferentHomeSpDifferentFqdn() local 91 homeSp.setFqdn("fqdn2.com"); in testUniqueIdDifferentHomeSpDifferentFqdn() [all …]
|
/cts/tests/tests/wifi/src/android/net/wifi/cts/ |
D | PpsMoParserTest.java | 75 HomeSp homeSp = new HomeSp(); in generateConfigurationFromPPSMOTree() local 76 homeSp.setFriendlyName("Century House"); in generateConfigurationFromPPSMOTree() 77 assertEquals("Century House", homeSp.getFriendlyName()); in generateConfigurationFromPPSMOTree() 78 homeSp.setFqdn("mi6.co.uk"); in generateConfigurationFromPPSMOTree() 79 assertEquals("mi6.co.uk", homeSp.getFqdn()); in generateConfigurationFromPPSMOTree() 80 homeSp.setRoamingConsortiumOis(new long[] {0x112233L, 0x445566L}); in generateConfigurationFromPPSMOTree() 82 homeSp.getRoamingConsortiumOis())); in generateConfigurationFromPPSMOTree() 83 config.setHomeSp(homeSp); in generateConfigurationFromPPSMOTree() 84 assertEquals(homeSp, config.getHomeSp()); in generateConfigurationFromPPSMOTree()
|
D | ConfigParserTest.java | 76 HomeSp homeSp = new HomeSp(); in generateConfigurationFromProfile() local 77 homeSp.setFriendlyName("Century House"); in generateConfigurationFromProfile() 78 homeSp.setFqdn("mi6.co.uk"); in generateConfigurationFromProfile() 79 homeSp.setRoamingConsortiumOis(new long[] {0x112233L, 0x445566L}); in generateConfigurationFromProfile() 80 config.setHomeSp(homeSp); in generateConfigurationFromProfile()
|
D | WifiHotspot2Test.java | 204 HomeSp homeSp = createHomeSp(); in testHomeSpCopyConstructor() local 205 HomeSp copyOfHomeSp = new HomeSp(homeSp); in testHomeSpCopyConstructor() 206 assertEquals(copyOfHomeSp, homeSp); in testHomeSpCopyConstructor() 384 HomeSp homeSp = new HomeSp(); in createHomeSp() local 385 homeSp.setFqdn("test.com"); in createHomeSp() 386 homeSp.setFriendlyName("friendly name"); in createHomeSp() 387 homeSp.setRoamingConsortiumOis(new long[]{0x55, 0x66}); in createHomeSp() 388 return homeSp; in createHomeSp()
|
D | WifiNetworkSuggestionTest.java | 1001 HomeSp homeSp = new HomeSp(); in createPasspointConfig() local 1002 homeSp.setFqdn("fqdn"); in createPasspointConfig() 1003 homeSp.setFriendlyName("friendly name"); in createPasspointConfig() 1004 homeSp.setRoamingConsortiumOis(new long[] {0x55, 0x66}); in createPasspointConfig() 1016 config.setHomeSp(homeSp); in createPasspointConfig()
|
D | WifiManagerTest.java | 3593 HomeSp homeSp = new HomeSp(); in createPasspointConfiguration() local 3594 homeSp.setFqdn("test.com"); in createPasspointConfiguration() 3595 homeSp.setFriendlyName("friendly name"); in createPasspointConfiguration() 3596 homeSp.setRoamingConsortiumOis(new long[]{0x55, 0x66}); in createPasspointConfiguration() 3597 config.setHomeSp(homeSp); in createPasspointConfiguration()
|