Home
last modified time | relevance | path

Searched refs:homeSp (Results 1 – 7 of 7) sorted by relevance

/cts/tests/tests/wifi/src/android/net/wifi/passpoint/cts/
DHomeSpTest.java36 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 …]
DPasspointConfigurationTest.java65 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/
DPpsMoParserTest.java75 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()
DConfigParserTest.java76 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()
DWifiHotspot2Test.java209 HomeSp homeSp = createHomeSp(); in testHomeSpCopyConstructor() local
210 HomeSp copyOfHomeSp = new HomeSp(homeSp); in testHomeSpCopyConstructor()
211 assertEquals(copyOfHomeSp, homeSp); in testHomeSpCopyConstructor()
389 HomeSp homeSp = new HomeSp(); in createHomeSp() local
390 homeSp.setFqdn("test.com"); in createHomeSp()
391 homeSp.setFriendlyName("friendly name"); in createHomeSp()
392 homeSp.setRoamingConsortiumOis(new long[]{0x55, 0x66}); in createHomeSp()
393 return homeSp; in createHomeSp()
DWifiNetworkSuggestionTest.java1025 HomeSp homeSp = new HomeSp(); in createPasspointConfig() local
1026 homeSp.setFqdn("fqdn"); in createPasspointConfig()
1027 homeSp.setFriendlyName("friendly name"); in createPasspointConfig()
1028 homeSp.setRoamingConsortiumOis(new long[] {0x55, 0x66}); in createPasspointConfig()
1040 config.setHomeSp(homeSp); in createPasspointConfig()
DWifiManagerTest.java4578 HomeSp homeSp = new HomeSp(); in createPasspointConfiguration() local
4579 homeSp.setFqdn("test.com"); in createPasspointConfiguration()
4580 homeSp.setFriendlyName("friendly name"); in createPasspointConfiguration()
4581 homeSp.setRoamingConsortiumOis(new long[]{0x55, 0x66}); in createPasspointConfiguration()
4582 config.setHomeSp(homeSp); in createPasspointConfiguration()