OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:requestANQP
(Results
1 - 9
of
9
) sorted by null
/system/connectivity/wificond/aidl/android/net/wifi/
IClientInterface.aidl
64
boolean
requestANQP
(in byte[] bssid, IANQPDoneCallback callback);
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/
ANQPRequestManagerTest.java
111
when(mHandler.
requestANQP
(TEST_BSSID, R1_ANQP_WITHOUT_RC)).thenReturn(true);
124
when(mHandler.
requestANQP
(TEST_BSSID, R1_ANQP_WITH_RC)).thenReturn(true);
137
when(mHandler.
requestANQP
(TEST_BSSID, R1R2_ANQP_WITHOUT_RC)).thenReturn(true);
150
when(mHandler.
requestANQP
(TEST_BSSID, R1R2_ANQP_WITH_RC)).thenReturn(true);
164
when(mHandler.
requestANQP
(TEST_BSSID, R1_ANQP_WITHOUT_RC)).thenReturn(true);
173
verify(mHandler, never()).
requestANQP
(anyLong(), anyObject());
177
when(mHandler.
requestANQP
(TEST_BSSID, R1_ANQP_WITHOUT_RC)).thenReturn(true);
193
when(mHandler.
requestANQP
(TEST_BSSID, R1_ANQP_WITHOUT_RC)).thenReturn(false);
199
when(mHandler.
requestANQP
(TEST_BSSID, R1_ANQP_WITHOUT_RC)).thenReturn(true);
214
when(mHandler.
requestANQP
(TEST_BSSID, R1_ANQP_WITHOUT_RC)).thenReturn(true)
[
all
...]
PasspointEventHandlerTest.java
76
when(mWifiNative.
requestAnqp
(eq(BSSID_STR), eq(expAnqpIds), eq(expHs20Subtypes)))
78
assertTrue(mHandler.
requestANQP
(BSSID, elementToRequest));
81
when(mWifiNative.
requestAnqp
(eq(BSSID_STR), eq(expAnqpIds), eq(expHs20Subtypes)))
83
assertFalse(mHandler.
requestANQP
(BSSID, elementToRequest));
99
when(mWifiNative.
requestAnqp
(eq(BSSID_STR), eq(expAnqpIds), eq(expHs20Subtypes)))
101
assertTrue(mHandler.
requestANQP
(BSSID, elementToRequest));
104
when(mWifiNative.
requestAnqp
(eq(BSSID_STR), eq(expAnqpIds), eq(expHs20Subtypes)))
106
assertFalse(mHandler.
requestANQP
(BSSID, elementToRequest));
125
when(mWifiNative.
requestAnqp
(eq(BSSID_STR), eq(expAnqpIds), eq(expHs20Subtypes)))
127
assertTrue(mHandler.
requestANQP
(BSSID, elementToRequest))
[
all
...]
/system/connectivity/wificond/
client_interface_binder.cpp
94
Status ClientInterfaceBinder::
requestANQP
(
102
*out_success = impl_->
requestANQP
(bssid, callback);
client_interface_binder.h
51
::android::binder::Status
requestANQP
(
client_interface_impl.h
82
bool
requestANQP
(
client_interface_impl.cpp
215
bool ClientInterfaceImpl::
requestANQP
(
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
ANQPRequestManager.java
127
if (!mPasspointHandler.
requestANQP
(bssid, getRequestElementIDs(rcOIs, hsReleaseR2))) {
PasspointEventHandler.java
80
public boolean
requestANQP
(long bssid, List<Constants.ANQPElementType> elements) {
83
if (!mSupplicantHook.
requestAnqp
(
Completed in 635 milliseconds