OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:stopFind
(Results
1 - 7
of
7
) sorted by null
/hardware/interfaces/wifi/supplicant/1.0/
ISupplicantP2pIface.hal
151
* |
stopFind
| is sent.
171
stopFind
() generates (SupplicantStatus status);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
WifiP2pNative.java
246
* |
stopFind
| is sent.
259
return mSupplicantP2pIfaceHal.
stopFind
();
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
...]
/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
...]
/external/wpa_supplicant_8/wpa_supplicant/hidl/1.0/
p2p_iface.h
77
Return<void>
stopFind
(stopFind_cb _hidl_cb) override;
p2p_iface.cpp
158
Return<void> P2pIface::
stopFind
(stopFind_cb _hidl_cb)
[
all
...]
/hardware/interfaces/wifi/supplicant/1.0/vts/functional/
supplicant_p2p_iface_hidl_test.cpp
248
*
StopFind
250
TEST_F(SupplicantP2pIfaceHidlTest,
StopFind
) {
255
p2p_iface_->
stopFind
([](const SupplicantStatus& status) {
Completed in 154 milliseconds