OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:networkDetail
(Results
1 - 6
of
6
) sorted by null
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
ScanDetailUtil.java
22
import com.android.server.wifi.hotspot2.
NetworkDetail
;
36
NetworkDetail
networkDetail
= new
NetworkDetail
(scanResult.BSSID,
38
return new ScanDetail(scanResult,
networkDetail
, null);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
ScanDetail.java
28
import com.android.server.wifi.hotspot2.
NetworkDetail
;
41
private volatile
NetworkDetail
mNetworkDetail;
45
public ScanDetail(
NetworkDetail
networkDetail
, WifiSsid wifiSsid, String bssid,
48
mNetworkDetail =
networkDetail
;
49
mScanResult = new ScanResult(wifiSsid, bssid,
networkDetail
.getHESSID(),
50
networkDetail
.getAnqpDomainID(),
networkDetail
.getOsuProviders(),
54
mScanResult.channelWidth =
networkDetail
.getChannelWidth();
55
mScanResult.centerFreq0 =
networkDetail
.getCenterfreq0()
[
all
...]
WifiMetrics.java
25
import com.android.server.wifi.hotspot2.
NetworkDetail
;
388
NetworkDetail
networkDetail
= scanDetail.getNetworkDetail();
390
//Ensure that we have a
networkDetail
, and that it corresponds to the currently
392
if (
networkDetail
!= null && scanResult != null
395
.equals("\"" +
networkDetail
.getSSID() + "\"")) {
396
updateMetricsFromNetworkDetail(
networkDetail
);
431
* Set ConnectionEvent DTIM Interval (if set), and 802.11 Connection mode, from
NetworkDetail
433
private void updateMetricsFromNetworkDetail(
NetworkDetail
networkDetail
) {
[
all
...]
WifiNative.java
51
import com.android.server.wifi.hotspot2.
NetworkDetail
;
710
NetworkDetail
networkDetail
= new
NetworkDetail
(bssid,
713
if (!xssid.equals(
networkDetail
.getTrimmedSSID())) {
716
bssid, xssid,
networkDetail
.getSSID(), infoElementsStr));
719
if (
networkDetail
.hasInterworking()) {
720
if (DBG) Log.d(TAG, "HSNwk: '" +
networkDetail
);
722
ScanDetail scan = new ScanDetail(
networkDetail
, wifiSsid, bssid, flags,
[
all
...]
WifiStateMachine.java
108
import com.android.server.wifi.hotspot2.
NetworkDetail
;
[
all
...]
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WifiMetricsTest.java
27
import com.android.server.wifi.hotspot2.
NetworkDetail
;
384
NetworkDetail
networkDetail
= mock(
NetworkDetail
.class);
385
when(
networkDetail
.getWifiMode()).thenReturn(NETWORK_DETAIL_WIFIMODE);
386
when(
networkDetail
.getSSID()).thenReturn(SSID);
387
when(
networkDetail
.getDtimInterval()).thenReturn(NETWORK_DETAIL_DTIM);
398
when(scanDetail.getNetworkDetail()).thenReturn(
networkDetail
);
Completed in 171 milliseconds