Home
last modified time | relevance | path

Searched refs:mWifiNative (Results 1 – 5 of 5) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
DWifiP2pServiceImpl.java500 private WifiNative mWifiNative = new WifiNative(mInterface); field in WifiP2pServiceImpl.P2pStateMachine
501 private WifiMonitor mWifiMonitor = new WifiMonitor(this, mWifiNative);
518 mWifiNative.removeNetwork(netId);
519 mWifiNative.saveConfig();
746 mWifiNative.p2pGroupRemove(mGroup.getInterface()); in processMessage()
1004 mWifiNative.p2pStopFind(); in processMessage()
1009 mWifiNative.p2pFind(DISCOVER_TIMEOUT_S); in processMessage()
1028 if (mWifiNative.p2pFind(DISCOVER_TIMEOUT_S)) { in processMessage()
1040 if (mWifiNative.p2pStopFind()) { in processMessage()
1059 if (mWifiNative.p2pFind(DISCOVER_TIMEOUT_S)) { in processMessage()
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiConfigStore.java495 private WifiNative mWifiNative; field in WifiConfigStore
533 mWifiNative = wn; in WifiConfigStore()
573 mLocalLog = mWifiNative.getLocalLog(); in WifiConfigStore()
679 mSupplicantBridge = new SupplicantBridge(mWifiNative, this); in WifiConfigStore()
926 if(mWifiNative.enableNetwork(config.networkId, false)) { in enableAllNetworks()
945 mWifiNative.saveConfig(); in enableAllNetworks()
951 return mWifiNative.setNetworkVariable(netId, in setNetworkPriorityNative()
956 return mWifiNative.setNetworkVariable(netId, WifiConfiguration.ssidVarName, in setSSIDNative()
1026 mWifiNative.saveConfig(); in selectNetwork()
1028 mWifiNative.selectNetwork(config.networkId); in selectNetwork()
[all …]
DWifiStateMachine.java189 private WifiNative mWifiNative; field in WifiStateMachine
1068 mWifiNative = new WifiNative(mInterfaceName); in WifiStateMachine()
1069 mWifiConfigStore = new WifiConfigStore(context,this, mWifiNative); in WifiStateMachine()
1071 mWifiConfigStore, mWifiConnectionStatistics, mWifiNative); in WifiStateMachine()
1072 mWifiMonitor = new WifiMonitor(this, mWifiNative); in WifiStateMachine()
1293 mWifiNative.setSupplicantLogLevel("DEBUG"); in enableVerboseLogging()
1299 mWifiNative.setSupplicantLogLevel("INFO"); in enableVerboseLogging()
1304 mWifiNative.enableVerboseLogging(verbose); in enableVerboseLogging()
1532 return mWifiNative.setScanningMacOui(ouiBytes); in setRandomMacOui()
1738 stats = mWifiNative.getWifiLinkLayerStats(name); in getWifiLinkLayerStats()
[all …]
DWifiMonitor.java516 private final WifiNative mWifiNative; field in WifiMonitor
535 mWifiNative = wifiNative; in WifiMonitor()
578 private WifiNative mWifiNative; field in WifiMonitor.WifiMonitorSingleton
599 if (mWifiNative.connectToSupplicant()) { in startMonitoring()
603 new MonitorThread(mWifiNative, this).start(); in startMonitoring()
630 if (mWifiNative == null) { in registerInterfaceMonitor()
631 mWifiNative = m.mWifiNative; in registerInterfaceMonitor()
644 mWifiNative.stopSupplicant(); in stopSupplicant()
736 private final WifiNative mWifiNative; field in WifiMonitor.MonitorThread
742 mWifiNative = wifiNative; in MonitorThread()
[all …]
DWifiAutoJoinController.java53 private WifiNative mWifiNative; field in WifiAutoJoinController
117 mWifiNative = n; in WifiAutoJoinController()
1465 int supplicantNetId = getNetID(mWifiNative.status(true)); in attemptAutoJoin()