Home
last modified time | relevance | path

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

/tools/tradefederation/core/src/com/android/tradefed/device/
DWifiHelper.java611 List<WifiCommandUtil.ScanResult> scanResults = getScanResults(120000L); in connectToNetworkV2() local
612 if (scanResults == null) { in connectToNetworkV2()
615 String networkType = findNetworkType(ssid, scanResults); in connectToNetworkV2()
665 List<WifiCommandUtil.ScanResult> scanResults = in getScanResults() local
667 if (!scanResults.isEmpty()) { in getScanResults()
668 return scanResults; in getScanResults()
678 private String findNetworkType(String ssid, List<WifiCommandUtil.ScanResult> scanResults) { in findNetworkType() argument
680 for (WifiCommandUtil.ScanResult scanResult : scanResults) { in findNetworkType()
685 CLog.w("Failed to find scan result for ssid %s from scanResults: \n%s", ssid, scanResults); in findNetworkType()