OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:networkDetail
(Results
1 - 9
of
9
) sorted by null
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
ScanDetail.java
28
import com.android.server.wifi.hotspot2.
NetworkDetail
;
39
private volatile
NetworkDetail
mNetworkDetail;
42
public ScanDetail(
NetworkDetail
networkDetail
, WifiSsid wifiSsid, String bssid,
45
mNetworkDetail =
networkDetail
;
46
mScanResult = new ScanResult(wifiSsid, bssid,
networkDetail
.getHESSID(),
47
networkDetail
.getAnqpDomainID(),
networkDetail
.getOsuProviders(),
51
mScanResult.channelWidth =
networkDetail
.getChannelWidth();
52
mScanResult.centerFreq0 =
networkDetail
.getCenterfreq0()
[
all
...]
WifiMetrics.java
33
import com.android.server.wifi.hotspot2.
NetworkDetail
;
443
NetworkDetail
networkDetail
= scanDetail.getNetworkDetail();
445
//Ensure that we have a
networkDetail
, and that it corresponds to the currently
447
if (
networkDetail
!= null && scanResult != null
450
.equals("\"" +
networkDetail
.getSSID() + "\"")) {
451
updateMetricsFromNetworkDetail(
networkDetail
);
489
* Set ConnectionEvent DTIM Interval (if set), and 802.11 Connection mode, from
NetworkDetail
491
private void updateMetricsFromNetworkDetail(
NetworkDetail
networkDetail
) {
[
all
...]
WificondControl.java
32
import com.android.server.wifi.hotspot2.
NetworkDetail
;
348
NetworkDetail
networkDetail
=
349
new
NetworkDetail
(bssid, ies, null, result.frequency);
351
if (!wifiSsid.toString().equals(
networkDetail
.getTrimmedSSID())) {
355
ScanDetail scanDetail = new ScanDetail(
networkDetail
, wifiSsid, bssid, flags,
WifiStateMachine.java
112
import com.android.server.wifi.hotspot2.
NetworkDetail
;
[
all
...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
PasspointNetworkScore.java
82
private static final Map<
NetworkDetail
.Ant, Integer> NETWORK_TYPE_SCORES = new HashMap<>();
95
NETWORK_TYPE_SCORES.put(
NetworkDetail
.Ant.FreePublic, PUBLIC_OR_PRIVATE_NETWORK_AWARDS);
96
NETWORK_TYPE_SCORES.put(
NetworkDetail
.Ant.ChargeablePublic,
98
NETWORK_TYPE_SCORES.put(
NetworkDetail
.Ant.PrivateWithGuest,
100
NETWORK_TYPE_SCORES.put(
NetworkDetail
.Ant.Private,
102
NETWORK_TYPE_SCORES.put(
NetworkDetail
.Ant.Personal, PERSONAL_OR_EMERGENCY_NETWORK_AWARDS);
103
NETWORK_TYPE_SCORES.put(
NetworkDetail
.Ant.EmergencyOnly,
105
NETWORK_TYPE_SCORES.put(
NetworkDetail
.Ant.Wildcard, 0);
106
NETWORK_TYPE_SCORES.put(
NetworkDetail
.Ant.TestOrExperimental, 0);
149
NetworkDetail
networkDetail = scanDetail.getNetworkDetail()
[
all
...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
ScanResultUtil.java
26
import com.android.server.wifi.hotspot2.
NetworkDetail
;
43
NetworkDetail
networkDetail
= new
NetworkDetail
(scanResult.BSSID,
45
return new ScanDetail(scanResult,
networkDetail
);
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/
PasspointNetworkEvaluatorTest.java
111
NetworkDetail
networkDetail
= mock(
NetworkDetail
.class);
112
when(
networkDetail
.isInterworking()).thenReturn(true);
113
when(
networkDetail
.getAnt()).thenReturn(
NetworkDetail
.Ant.FreePublic);
118
when(scanDetail.getNetworkDetail()).thenReturn(
networkDetail
);
157
NetworkDetail
networkDetail
= mock(
NetworkDetail
.class)
[
all
...]
PasspointNetworkScoreTest.java
50
public final
NetworkDetail
.Ant networkType;
55
NetworkDetail
.Ant type, Map<ANQPElementType, ANQPElement> 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 */,
178
NetworkDetail
.Ant.FreePublic /* networkType */,
190
NetworkDetail
.Ant.FreePublic /* networkType */,
203
NetworkDetail
.Ant.FreePublic /* networkType */,
216
NetworkDetail
.Ant.FreePublic /* networkType */
[
all
...]
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WifiMetricsTest.java
34
import com.android.server.wifi.hotspot2.
NetworkDetail
;
239
private ScanDetail buildMockScanDetail(boolean hidden,
NetworkDetail
.HSRelease hSRelease,
242
NetworkDetail
mockNetworkDetail = mock(
NetworkDetail
.class);
259
mockScanDetails.add(buildMockScanDetail(false,
NetworkDetail
.HSRelease.R2,
261
mockScanDetails.add(buildMockScanDetail(false,
NetworkDetail
.HSRelease.R2,
263
mockScanDetails.add(buildMockScanDetail(false,
NetworkDetail
.HSRelease.R1,
[
all
...]
Completed in 160 milliseconds