Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/p2p/
DSupplicantP2pIfaceHalTest.java443 when(mISupplicantP2pIfaceMock.stopFind()).thenReturn(mStatusSuccess); in testStopFind_success()
445 assertFalse(mDut.stopFind()); in testStopFind_success()
447 assertTrue(mDut.stopFind()); in testStopFind_success()
456 when(mISupplicantP2pIfaceMock.stopFind()).thenReturn(mStatusFailure); in testStopFind_failure()
457 assertFalse(mDut.stopFind()); in testStopFind_failure()
468 when(mISupplicantP2pIfaceMock.stopFind()).thenThrow(mRemoteException); in testStopFind_exception()
469 assertFalse(mDut.stopFind()); in testStopFind_exception()
DWifiP2pNativeTest.java329 when(mSupplicantP2pIfaceHalMock.stopFind()).thenReturn(true); in testP2pStopFind()
331 verify(mSupplicantP2pIfaceHalMock).stopFind(); in testP2pStopFind()
/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/
DWifiP2pNative.java434 return mSupplicantP2pIfaceHal.stopFind(); in p2pStopFind()
DSupplicantP2pIfaceHal.java718 public boolean stopFind() { in stopFind() method in SupplicantP2pIfaceHal
723 result.setResult(mISupplicantP2pIface.stopFind()); in stopFind()