Searched refs:stopFind (Results 1 – 4 of 4) sorted by relevance
311 when(mSupplicantP2pIfaceHalMock.stopFind()).thenReturn(true); in testP2pStopFind()313 verify(mSupplicantP2pIfaceHalMock).stopFind(); in testP2pStopFind()
421 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()
460 return mSupplicantP2pIfaceHal.stopFind(); in p2pStopFind()
627 public boolean stopFind() { in stopFind() method in SupplicantP2pIfaceHal632 result.setResult(mISupplicantP2pIface.stopFind()); in stopFind()