Searched refs:stopFind (Results 1 – 9 of 9) sorted by relevance
286 when(mP2pIfaceHalAidlMock.stopFind()).thenReturn(true); in testStopFind()287 assertTrue(mDut.stopFind()); in testStopFind()288 verify(mP2pIfaceHalAidlMock).stopFind(); in testStopFind()
481 when(mISupplicantP2pIfaceMock.stopFind()).thenReturn(mStatusSuccess); in testStopFind_success()483 assertFalse(mDut.stopFind()); in testStopFind_success()485 assertTrue(mDut.stopFind()); in testStopFind_success()494 when(mISupplicantP2pIfaceMock.stopFind()).thenReturn(mStatusFailure); in testStopFind_failure()495 assertFalse(mDut.stopFind()); in testStopFind_failure()506 when(mISupplicantP2pIfaceMock.stopFind()).thenThrow(mRemoteException); in testStopFind_exception()507 assertFalse(mDut.stopFind()); in testStopFind_exception()
458 doNothing().when(mISupplicantP2pIfaceMock).stopFind(); in testStopFind_success()460 assertFalse(mDut.stopFind()); in testStopFind_success()462 assertTrue(mDut.stopFind()); in testStopFind_success()472 .when(mISupplicantP2pIfaceMock).stopFind(); in testStopFind_failure()473 assertFalse(mDut.stopFind()); in testStopFind_failure()484 doThrow(new RemoteException()).when(mISupplicantP2pIfaceMock).stopFind(); in testStopFind_exception()485 assertFalse(mDut.stopFind()); in testStopFind_exception()
676 when(mSupplicantP2pIfaceHalMock.stopFind()).thenReturn(true); in testP2pStopFind()678 verify(mSupplicantP2pIfaceHalMock).stopFind(); in testP2pStopFind()
137 boolean stopFind(); in stopFind() method
267 public boolean stopFind() { in stopFind() method in SupplicantP2pIfaceHal273 return mP2pIfaceHal.stopFind(); in stopFind()
590 return mSupplicantP2pIfaceHal.stopFind(); in p2pStopFind()
813 public boolean stopFind() { in stopFind() method in SupplicantP2pIfaceHalHidlImpl818 result.setResult(mISupplicantP2pIface.stopFind()); in stopFind()
634 public boolean stopFind() { in stopFind() method in SupplicantP2pIfaceHalAidlImpl641 mISupplicantP2pIface.stopFind(); in stopFind()