HomeSort by relevance Sort by last modified time
    Searched defs:stopFind (Results 1 - 3 of 3) sorted by null

  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
SupplicantP2pIfaceHal.java 440 * |stopFind| is sent.
468 public boolean stopFind() {
470 if (!checkSupplicantP2pIfaceAndLogFailure("stopFind")) return false;
471 SupplicantResult<Void> result = new SupplicantResult("stopFind()");
473 result.setResult(mISupplicantP2pIface.stopFind());
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/hidl/1.0/
p2p_iface.cpp 158 Return<void> P2pIface::stopFind(stopFind_cb _hidl_cb)
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/p2p/
SupplicantP2pIfaceHalTest.java 317 * Sunny day scenario for stopFind()
321 when(mISupplicantP2pIfaceMock.stopFind()).thenReturn(mStatusSuccess);
323 assertFalse(mDut.stopFind());
325 assertTrue(mDut.stopFind());
329 * Verify that stopFind returns false, if status is not SUCCESS.
334 when(mISupplicantP2pIfaceMock.stopFind()).thenReturn(mStatusFailure);
335 assertFalse(mDut.stopFind());
341 * Verify that stopFind disconnects and returns false, if HAL throws exception.
346 when(mISupplicantP2pIfaceMock.stopFind()).thenThrow(mRemoteException);
347 assertFalse(mDut.stopFind());
    [all...]

Completed in 520 milliseconds