Searched refs:stopPnoScan (Results 1 – 10 of 10) sorted by relevance
124 when(mWifiNative.stopPnoScan(IFACE_NAME)).thenReturn(false); in ignoreHwDisconnectedPnoScanStopFailure()127 verify(mWifiNative).stopPnoScan(IFACE_NAME); in ignoreHwDisconnectedPnoScanStopFailure()184 when(mWifiNative.stopPnoScan(IFACE_NAME)).thenReturn(true); in startSuccessfulPnoScan()
807 when(mWifiScannerImpl.stopPnoScan()).thenReturn(true); in testStopPnoScan()808 assertTrue(mWificondControl.stopPnoScan(TEST_INTERFACE_NAME)); in testStopPnoScan()809 verify(mWifiScannerImpl).stopPnoScan(); in testStopPnoScan()818 when(mWifiScannerImpl.stopPnoScan()).thenReturn(false); in testStopPnoScanFailure()819 assertFalse(mWificondControl.stopPnoScan(TEST_INTERFACE_NAME)); in testStopPnoScanFailure()820 verify(mWifiScannerImpl).stopPnoScan(); in testStopPnoScanFailure()
568 mWifiNative.stopPnoScan(WIFI_IFACE_NAME); in testStopPnoScan()569 verify(mWificondControl).stopPnoScan(WIFI_IFACE_NAME); in testStopPnoScan()
2154 verify(mWifiScanner).stopPnoScan(any());2163 verify(mWifiScanner, times(2)).stopPnoScan(any());2196 inOrder.verify(mWifiScanner).stopPnoScan(any());2219 inOrder.verify(mWifiScanner, never()).stopPnoScan(any());2248 verify(mWifiScanner, never()).stopPnoScan(any());
990 stopPnoScan(); in setDeviceMobilityState()1037 private void stopPnoScan() { in stopPnoScan() method in WifiConnectivityManager1040 mScanner.stopPnoScan(mPnoScanListener); in stopPnoScan()1133 stopPnoScan(); in stopConnectivityScan()
773 public boolean stopPnoScan(@NonNull String ifaceName) { in stopPnoScan() method in WificondControl780 return scannerImpl.stopPnoScan(); in stopPnoScan()
1336 public boolean stopPnoScan(@NonNull String ifaceName) { in stopPnoScan() method in WifiNative1337 return mWificondControl.stopPnoScan(ifaceName); in stopPnoScan()
426 mWifiNative.stopPnoScan(mIfaceName); in stopHwPnoScan()
438 mWifiScanner.stopPnoScan(pnoScanListener); in testStopPnoScan()
990 public void stopPnoScan(ScanListener listener) { in stopPnoScan() method in WifiScanner