Home
last modified time | relevance | path

Searched refs:spList (Results 1 – 3 of 3) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
DPasspointManagementObjectManager.java212 List<HomeSP> spList = buildSPs(tree); in buildSP() local
213 if (spList.size() != 1) { in buildSP()
214 throw new OMAException("Expected exactly one HomeSP, got " + spList.size()); in buildSP()
216 return spList.iterator().next(); in buildSP()
256 List<HomeSP> spList = buildSPs(instanceTree); in addSP() local
257 if (spList.size() != 1) { in addSP()
258 throw new OMAException("Expected exactly one HomeSP, got " + spList.size()); in addSP()
261 HomeSP sp = spList.iterator().next(); in addSP()
606 OMAConstructed spList; in buildSPs() local
610 spList = moTree.getRoot(); in buildSPs()
[all …]
/frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
DMOManager.java214 List<HomeSP> spList = buildSPs(tree); in buildSP() local
215 if (spList.size() != 1) { in buildSP()
216 throw new OMAException("Expected exactly one HomeSP, got " + spList.size()); in buildSP()
218 return spList.iterator().next(); in buildSP()
260 List<HomeSP> spList = buildSPs(instanceTree); in addSP() local
261 if (spList.size() != 1) { in addSP()
262 throw new OMAException("Expected exactly one HomeSP, got " + spList.size()); in addSP()
265 HomeSP sp = spList.iterator().next(); in addSP()
647 OMAConstructed spList; in buildSPs() local
651 spList = moTree.getRoot(); in buildSPs()
[all …]
/frameworks/base/packages/Osu/src/com/android/hotspot2/
DWifiNetworkAdapter.java54 List<HomeSP> spList = MOManager.buildSPs(mMOTree); in PasspointConfig() local
55 if (spList.size() != 1) { in PasspointConfig()
56 throw new OMAException("Expected exactly one HomeSP, got " + spList.size()); in PasspointConfig()
58 mHomeSP = spList.iterator().next(); in PasspointConfig()