Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/p2p/
DSupplicantP2pIfaceHalTest.java286 when(mP2pIfaceHalAidlMock.stopFind()).thenReturn(true); in testStopFind()
287 assertTrue(mDut.stopFind()); in testStopFind()
288 verify(mP2pIfaceHalAidlMock).stopFind(); in testStopFind()
DSupplicantP2pIfaceHalHidlImplTest.java481 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()
DSupplicantP2pIfaceHalAidlImplTest.java458 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()
DWifiP2pNativeTest.java676 when(mSupplicantP2pIfaceHalMock.stopFind()).thenReturn(true); in testP2pStopFind()
678 verify(mSupplicantP2pIfaceHalMock).stopFind(); in testP2pStopFind()
/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/
DISupplicantP2pIfaceHal.java137 boolean stopFind(); in stopFind() method
DSupplicantP2pIfaceHal.java267 public boolean stopFind() { in stopFind() method in SupplicantP2pIfaceHal
273 return mP2pIfaceHal.stopFind(); in stopFind()
DWifiP2pNative.java590 return mSupplicantP2pIfaceHal.stopFind(); in p2pStopFind()
DSupplicantP2pIfaceHalHidlImpl.java813 public boolean stopFind() { in stopFind() method in SupplicantP2pIfaceHalHidlImpl
818 result.setResult(mISupplicantP2pIface.stopFind()); in stopFind()
DSupplicantP2pIfaceHalAidlImpl.java634 public boolean stopFind() { in stopFind() method in SupplicantP2pIfaceHalAidlImpl
641 mISupplicantP2pIface.stopFind(); in stopFind()