OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:informationElements
(Results
1 - 12
of
12
) sorted by null
/frameworks/base/wifi/java/android/net/wifi/
ScanResult.java
427
public InformationElement[]
informationElements
;
521
informationElements
= source.
informationElements
;
618
if (
informationElements
!= null) {
619
dest.writeInt(
informationElements
.length);
620
for (int i = 0; i <
informationElements
.length; i++) {
621
dest.writeInt(
informationElements
[i].id);
622
dest.writeInt(
informationElements
[i].bytes.length);
623
dest.writeByteArray(
informationElements
[i].bytes);
688
sr.
informationElements
= new InformationElement[n]
[
all
...]
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/util/
ScanResultUtilTest.java
47
input.
informationElements
= new InformationElement[] {
63
input.
informationElements
= new InformationElement[] {
78
input.
informationElements
= new InformationElement[] {
172
assertArrayEquals("ScanResult information elements", input.
informationElements
,
173
output.getScanResult().
informationElements
);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
ScanDetail.java
44
ScanResult.InformationElement[]
informationElements
, List<String> anqpLines) {
54
mScanResult.
informationElements
=
informationElements
;
WifiVendorHal.java
[
all
...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
ScanResultUtil.java
39
* This method should only be used when the
informationElements
field in the provided scan
44
scanResult.
informationElements
, scanResult.anqpLines, scanResult.frequency);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
PasspointManager.java
335
InformationElementUtil.getRoamingConsortiumIE(scanResult.
informationElements
);
337
scanResult.
informationElements
);
448
InformationElementUtil.getHS2VendorSpecificIE(scanResult.
informationElements
);
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WifiConnectivityManagerTest.java
199
scanResults[0].
informationElements
= new InformationElement[1];
200
scanResults[0].
informationElements
[0] = new InformationElement();
201
scanResults[0].
informationElements
[0].id = InformationElement.EID_SSID;
202
scanResults[0].
informationElements
[0].bytes =
[
all
...]
WifiVendorHalTest.java
[
all
...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
WifiScanningServiceImpl.java
[
all
...]
/hardware/interfaces/wifi/1.0/
types.hal
502
vec<WifiInformationElement>
informationElements
;
[
all
...]
/external/sl4a/Common/src/com/googlecode/android_scripting/jsonrpc/
JsonBuilder.java
605
if (scanResult.
informationElements
!= null) {
607
for (ScanResult.InformationElement ie : scanResult.
informationElements
) {
[
all
...]
/hardware/interfaces/wifi/1.0/default/
hidl_struct_util.cpp
468
hidl_scan_result->
informationElements
= std::move(ies);
[
all
...]
Completed in 210 milliseconds