Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/p2p/
DWifiP2pNativeTest.java311 when(mSupplicantP2pIfaceHalMock.stopFind()).thenReturn(true); in testP2pStopFind()
313 verify(mSupplicantP2pIfaceHalMock).stopFind(); in testP2pStopFind()
DSupplicantP2pIfaceHalTest.java421 when(mISupplicantP2pIfaceMock.stopFind()).thenReturn(mStatusSuccess); in testStopFind_success()
423 assertFalse(mDut.stopFind()); in testStopFind_success()
425 assertTrue(mDut.stopFind()); in testStopFind_success()
434 when(mISupplicantP2pIfaceMock.stopFind()).thenReturn(mStatusFailure); in testStopFind_failure()
435 assertFalse(mDut.stopFind()); in testStopFind_failure()
446 when(mISupplicantP2pIfaceMock.stopFind()).thenThrow(mRemoteException); in testStopFind_exception()
447 assertFalse(mDut.stopFind()); in testStopFind_exception()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
DWifiP2pNative.java460 return mSupplicantP2pIfaceHal.stopFind(); in p2pStopFind()
DSupplicantP2pIfaceHal.java627 public boolean stopFind() { in stopFind() method in SupplicantP2pIfaceHal
632 result.setResult(mISupplicantP2pIface.stopFind()); in stopFind()