Home
last modified time | relevance | path

Searched refs:network3 (Results 1 – 6 of 6) sorted by relevance

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/util/
DLruConnectionTrackerTest.java67 WifiConfiguration network3 = WifiConfigurationTestUtil.createOpenNetwork(); in testConnectionOrderStore() local
72 mList.addNetwork(network3); in testConnectionOrderStore()
76 assertEquals(1, mList.getAgeIndexOfNetwork(network3)); in testConnectionOrderStore()
84 mList.addNetwork(network3); in testConnectionOrderStore()
85 assertEquals(0, mList.getAgeIndexOfNetwork(network3)); in testConnectionOrderStore()
95 WifiConfiguration network3 = WifiConfigurationTestUtil.createOpenNetwork(); in testIsMostRecentlyNetwork() local
99 mList.addNetwork(network3); in testIsMostRecentlyNetwork()
102 assertTrue(mList.isMostRecentlyConnected(network3)); in testIsMostRecentlyNetwork()
112 assertTrue(mList.isMostRecentlyConnected(network3)); in testIsMostRecentlyNetwork()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DWakeupConfigStoreDataTest.java135 ScanResultMatchInfo network3 = new ScanResultMatchInfo(); in deserializeSerializedData() local
136 network3.networkSsid = ""; in deserializeSerializedData()
137 network3.networkType = 2; in deserializeSerializedData()
139 Set<ScanResultMatchInfo> networks = Sets.newArraySet(network1, network2, network3); in deserializeSerializedData()
DWifiNetworkScoreCacheTest.java206 ScoredNetwork network3 = buildScoredNetwork( in leastRecentlyUsedScore_shouldBeEvictedFromCache() local
212 mScoreCache.onScoresUpdated(ImmutableList.of(network3)); in leastRecentlyUsedScore_shouldBeEvictedFromCache()
DWifiConfigManagerTest.java2566 WifiConfiguration network3 = WifiConfigurationTestUtil.createPskNetwork(); in testNetworkLinkUsingGwMacAddress() local
2569 verifyAddNetworkToWifiConfigManager(network3); in testNetworkLinkUsingGwMacAddress()
2577 network3.networkId, TEST_DEFAULT_GW_MAC_ADDRESS)); in testNetworkLinkUsingGwMacAddress()
2582 ScanDetail networkScanDetail3 = createScanDetailForNetwork(network3); in testNetworkLinkUsingGwMacAddress()
2615 WifiConfiguration network3 = WifiConfigurationTestUtil.createPskNetwork(); in testNetworkLinkUsingBSSIDMatch() local
2618 verifyAddNetworkToWifiConfigManager(network3); in testNetworkLinkUsingBSSIDMatch()
2623 ScanDetail networkScanDetail3 = createScanDetailForNetwork(network3, "af:89:56:34:56:69"); in testNetworkLinkUsingBSSIDMatch()
3606 WifiConfiguration network3 = WifiConfigurationTestUtil.createPskNetwork(); in testRemoveNetworkRemovesConnectChoice() local
3609 verifyAddNetworkToWifiConfigManager(network3); in testRemoveNetworkRemovesConnectChoice()
3624 network3.networkId, TEST_CREATOR_UID, TEST_CREATOR_NAME)); in testRemoveNetworkRemovesConnectChoice()
[all …]
DWifiConnectivityManagerTest.java2998 WifiConfiguration network3 = WifiConfigurationTestUtil.createOpenHiddenNetwork(); in testRetrievePnoList() local
3002 networkList.add(network3); in testRetrievePnoList()
3003 mLruConnectionTracker.addNetwork(network3); in testRetrievePnoList()
3014 assertEquals(network3.SSID, pnoNetworks.get(2).ssid); in testRetrievePnoList()
3017 network3.getNetworkSelectionStatus().setNetworkSelectionStatus( in testRetrievePnoList()
3100 WifiConfiguration network3 = WifiConfigurationTestUtil.createOpenHiddenNetwork(); in testRetrievePnoListOrder() local
3103 mLruConnectionTracker.addNetwork(network3); in testRetrievePnoListOrder()
3107 networkList.add(network3); in testRetrievePnoListOrder()
3112 assertEquals(network3.SSID, pnoNetworks.get(0).ssid); in testRetrievePnoListOrder()
/frameworks/base/wifi/tests/src/android/net/wifi/
DWifiNetworkScoreCacheTest.java213 ScoredNetwork network3 = buildScoredNetwork( in leastRecentlyUsedScore_shouldBeEvictedFromCache() local
219 mScoreCache.updateScores(ImmutableList.of(network3)); in leastRecentlyUsedScore_shouldBeEvictedFromCache()