Home
last modified time | relevance | path

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

/tools/tradefederation/core/src/com/android/tradefed/device/
DIWifiHelper.java210 Map<String, String> getWifiInfo() throws DeviceNotAvailableException; in getWifiInfo() method
DWifiHelper.java499 public Map<String, String> getWifiInfo() throws DeviceNotAvailableException { in getWifiInfo() method in WifiHelper
DNativeDevice.java3208 final Map<String, String> wifiInfo = wifi.getWifiInfo(); in connectToWifiNetwork()
/tools/tradefederation/core/javatests/com/android/tradefed/device/
DNativeDeviceTest.java890 when(mMockWifi.getWifiInfo()).thenReturn(fakeWifiInfo); in testConnectToWifiNetwork_success()
907 when(mMockWifi.getWifiInfo()).thenReturn(fakeWifiInfo); in testConnectToWifiNetworkGivenMap_success()
929 when(mMockWifi.getWifiInfo()).thenReturn(fakeWifiInfo); in testConnectToWifiNetwork_failure()
941 verify(mMockWifi, times(mTestDevice.getOptions().getWifiAttempts())).getWifiInfo(); in testConnectToWifiNetwork_failure()
959 when(mMockWifi.getWifiInfo()).thenReturn(fakeWifiInfo); in testConnectToWifiNetworkGivenMap_failure()
973 verify(mMockWifi, times(mTestDevice.getOptions().getWifiAttempts())).getWifiInfo(); in testConnectToWifiNetworkGivenMap_failure()
998 when(mMockWifi.getWifiInfo()).thenReturn(fakeWifiInfo); in testConnectToWifiNetwork_maxConnectTime()
1008 verify(mMockWifi, times(2)).getWifiInfo(); in testConnectToWifiNetwork_maxConnectTime()
1034 when(mMockWifi.getWifiInfo()).thenReturn(fakeWifiInfo); in testConnectToWifiNetworkGivenMap_maxConnectTime()
1046 verify(mMockWifi, times(2)).getWifiInfo(); in testConnectToWifiNetworkGivenMap_maxConnectTime()
[all …]
/tools/tradefederation/core/util_apps/WifiUtil/src/com/android/tradefed/utils/wifi/
DWifiUtil.java286 result.putString("result", connector.getWifiInfo().toString()); in onStart()
DWifiConnector.java359 public JSONObject getWifiInfo() throws WifiException { in getWifiInfo() method in WifiConnector