OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:anqpElements
(Results
1 - 11
of
11
) sorted by null
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
ANQPData.java
42
public ANQPData(Clock clock, Map<Constants.ANQPElementType, ANQPElement>
anqpElements
) {
45
if (
anqpElements
!= null) {
46
mANQPElements.putAll(
anqpElements
);
PasspointNetworkScore.java
148
Map<ANQPElementType, ANQPElement>
anqpElements
, boolean isActiveNetwork) {
161
if (
anqpElements
!= null) {
163
(HSWanMetricsElement)
anqpElements
.get(ANQPElementType.HSWANMetrics);
171
anqpElements
.get(ANQPElementType.ANQPIPAddrAvailability);
AnqpCache.java
53
* @param
anqpElements
The ANQP elements from the AP
56
Map<Constants.ANQPElementType, ANQPElement>
anqpElements
) {
57
ANQPData data = new ANQPData(mClock,
anqpElements
);
PasspointProvider.java
241
* @param
anqpElements
ANQP elements from the AP
244
public PasspointMatch match(Map<ANQPElementType, ANQPElement>
anqpElements
) {
245
PasspointMatch providerMatch = matchProvider(
anqpElements
);
249
(NAIRealmElement)
anqpElements
.get(ANQPElementType.ANQPNAIRealm),
434
* @param
anqpElements
List of ANQP elements
437
private PasspointMatch matchProvider(Map<ANQPElementType, ANQPElement>
anqpElements
) {
440
(DomainNameElement)
anqpElements
.get(ANQPElementType.ANQPDomName),
447
(RoamingConsortiumElement)
anqpElements
.get(ANQPElementType.ANQPRoamingConsortium),
454
(ThreeGPPNetworkElement)
anqpElements
.get(ANQPElementType.ANQP3GPPNetwork),
PasspointManager.java
112
Map<Constants.ANQPElementType, ANQPElement>
anqpElements
) {
115
mAnqpRequestManager.onRequestCompleted(bssid,
anqpElements
!= null);
116
if (
anqpElements
== null || anqpKey == null) {
123
mAnqpCache.addEntry(anqpKey,
anqpElements
);
126
if (
anqpElements
.containsKey(Constants.ANQPElementType.HSOSUProviders)) {
127
RawByteElement osuProviders = (RawByteElement)
anqpElements
.get(
NetworkDetail.java
324
private NetworkDetail(NetworkDetail base, Map<Constants.ANQPElementType, ANQPElement>
anqpElements
) {
340
mANQPElements =
anqpElements
;
350
public NetworkDetail complete(Map<Constants.ANQPElementType, ANQPElement>
anqpElements
) {
351
return new NetworkDetail(this,
anqpElements
);
PasspointEventHandler.java
46
* Invoked on received of ANQP response. |
anqpElements
| will be null on failure.
48
* @param
anqpElements
ANQP elements to be queried
51
Map<Constants.ANQPElementType, ANQPElement>
anqpElements
);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
ScanDetail.java
87
* @param
anqpElements
Map<Constants.ANQPElementType, ANQPElement>
89
public void propagateANQPInfo(Map<Constants.ANQPElementType, ANQPElement>
anqpElements
) {
90
if (
anqpElements
.isEmpty()) {
93
mNetworkDetail = mNetworkDetail.complete(
anqpElements
);
94
HSFriendlyNameElement fne = (HSFriendlyNameElement)
anqpElements
.get(
101
(((VenueNameElement)
anqpElements
.get(
107
RawByteElement osuProviders = (RawByteElement)
anqpElements
110
mScanResult.
anqpElements
= new AnqpInformationElement[1];
111
mScanResult.
anqpElements
[0] =
/frameworks/base/wifi/java/android/net/wifi/
ScanResult.java
432
public AnqpInformationElement[]
anqpElements
;
443
this.
anqpElements
= new AnqpInformationElement[1];
444
this.
anqpElements
[0] =
522
anqpElements
= source.
anqpElements
;
638
if (
anqpElements
!= null) {
639
dest.writeInt(
anqpElements
.length);
640
for (AnqpInformationElement element :
anqpElements
) {
707
sr.
anqpElements
= new AnqpInformationElement[n];
714
sr.
anqpElements
[i]
[
all
...]
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/
PasspointNetworkScoreTest.java
51
public final Map<ANQPElementType, ANQPElement>
anqpElements
;
62
anqpElements
= elements;
135
NetworkDetail.Ant.FreePublic /* networkType */, null /*
anqpElements
*/,
145
NetworkDetail.Ant.FreePublic /* networkType */, null /*
anqpElements
*/,
156
NetworkDetail.Ant.FreePublic /* networkType */, null /*
anqpElements
*/,
167
NetworkDetail.Ant.Personal /* networkType */, null /*
anqpElements
*/,
179
TEST_ANQP_WITH_WAN_PORT_UP /*
anqpElements
*/,
191
TEST_ANQP_WITH_WAN_PORT_DOWN /*
anqpElements
*/,
204
TEST_ANQP_WITH_WAN_PORT_CAPPED /*
anqpElements
*/,
217
TEST_ANQP_WITH_UNRESTRICTED_IP /*
anqpElements
*/,
[
all
...]
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
OSUCache.java
82
AnqpInformationElement[] osuInfo = scanResult.
anqpElements
;
Completed in 689 milliseconds