Home
last modified time | relevance | path

Searched refs:wifiNative (Results 1 – 25 of 37) sorted by relevance

12

/packages/modules/Wifi/service/java/com/android/server/wifi/scanner/
DWifiScannerImpl.java59 WifiNative wifiNative = WifiInjector.getInstance().getWifiNative();
65 if (wifiNative.getBgScanCapabilities(
67 return new HalWifiScannerImpl(context, ifaceName, wifiGlobals, wifiNative,
70 return new WificondScannerImpl(context, ifaceName, wifiGlobals, wifiNative,
71 wifiMonitor, new WificondChannelHelper(wifiNative), looper, clock);
DHalWifiScannerImpl.java48 WifiNative wifiNative, WifiMonitor wifiMonitor, in HalWifiScannerImpl() argument
51 mWifiNative = wifiNative; in HalWifiScannerImpl()
52 mChannelHelper = new WificondChannelHelper(wifiNative); in HalWifiScannerImpl()
54 new WificondScannerImpl(context, getIfaceName(), wifiGlobals, wifiNative, in HalWifiScannerImpl()
DWificondChannelHelper.java33 public WificondChannelHelper(WifiNative wifiNative) { in WificondChannelHelper() argument
34 mWifiNative = wifiNative; in WificondChannelHelper()
DWificondScannerImpl.java99 WifiNative wifiNative, WifiMonitor wifiMonitor, in WificondScannerImpl() argument
104 mWifiNative = wifiNative; in WificondScannerImpl()
/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/
DSystemInfo.java43 SystemInfo(Context context, WifiNative wifiNative) { in SystemInfo() argument
46 mWifiNative = wifiNative; in SystemInfo()
49 public static SystemInfo getInstance(@NonNull Context context, @NonNull WifiNative wifiNative) { in getInstance() argument
51 sSystemInfo = new SystemInfo(context, wifiNative); in getInstance()
DPasspointObjectFactory.java130 public PasspointProvisioner makePasspointProvisioner(Context context, WifiNative wifiNative, in makePasspointProvisioner() argument
132 return new PasspointProvisioner(context, wifiNative, this, passpointManager, wifiMetrics); in makePasspointProvisioner()
204 public SystemInfo getSystemInfo(Context context, WifiNative wifiNative) { in getSystemInfo() argument
205 return SystemInfo.getInstance(context, wifiNative); in getSystemInfo()
/packages/modules/Wifi/service/java/com/android/server/wifi/util/
DApConfigUtil.java409 @WifiScanner.WifiBand int scannerBand, WifiNative wifiNative, in addDfsChannelsIfNeeded() argument
415 int[] dfs5gBand = wifiNative.getChannelsForBand( in addDfsChannelsIfNeeded()
429 @WifiScanner.WifiBand int scannerBand, WifiNative wifiNative, in getWifiCondAvailableChannelsForBand() argument
433 int[] regulatoryArray = wifiNative.getChannelsForBand(scannerBand); in getWifiCondAvailableChannelsForBand()
438 return addDfsChannelsIfNeeded(regulatoryList, scannerBand, wifiNative, resources, in getWifiCondAvailableChannelsForBand()
443 @WifiScanner.WifiBand int scannerBand, WifiNative wifiNative, in getHalAvailableChannelsForBand() argument
447 List<WifiAvailableChannel> usableChannelList = wifiNative.getUsableChannels( in getHalAvailableChannelsForBand()
463 return addDfsChannelsIfNeeded(regulatoryList, scannerBand, wifiNative, resources, in getHalAvailableChannelsForBand()
480 @BandType int band, WifiNative wifiNative, Resources resources, in getAvailableChannelFreqsForBand() argument
493 if (!wifiNative.isHalSupported()) { in getAvailableChannelFreqsForBand()
[all …]
/packages/modules/Wifi/service/java/com/android/server/wifi/
DScanOnlyModeImpl.java33 public ScanOnlyModeImpl(long id, @NonNull WifiNative wifiNative, @NonNull String ifaceName) { in ScanOnlyModeImpl() argument
35 mWifiNative = wifiNative; in ScanOnlyModeImpl()
DSelfRecovery.java170 Clock clock, WifiNative wifiNative, WifiGlobals wifiGlobals) { in SelfRecovery() argument
175 mWifiNative = wifiNative; in SelfRecovery()
DRssiMonitor.java49 WifiInfo wifiInfo, WifiNative wifiNative, String interfaceName, in RssiMonitor() argument
54 mWifiNative = wifiNative; in RssiMonitor()
DQosPolicyRequestHandler.java62 @NonNull String ifaceName, @NonNull WifiNative wifiNative, in QosPolicyRequestHandler() argument
65 mWifiNative = wifiNative; in QosPolicyRequestHandler()
DSarManager.java101 WifiNative wifiNative, in SarManager() argument
105 mWifiNative = wifiNative; in SarManager()
DWifiCountryCode.java211 WifiNative wifiNative, in WifiCountryCode() argument
220 mWifiNative = wifiNative; in WifiCountryCode()
DTwtManager.java122 @NonNull WifiNative wifiNative, @NonNull Handler handler, @NonNull Clock clock, in TwtManager() argument
131 mWifiNative = wifiNative; in TwtManager()
DApplicationQosPolicyRequestHandler.java249 @NonNull WifiNative wifiNative, @NonNull HandlerThread handlerThread, in ApplicationQosPolicyRequestHandler() argument
252 mWifiNative = wifiNative; in ApplicationQosPolicyRequestHandler()
DWifiApConfigStore.java649 boolean isPrivileged, WifiContext context, WifiNative wifiNative) { in validateApWifiConfiguration() argument
726 if (!ApConfigUtil.isBridgedModeSupported(context, wifiNative)) { in validateApWifiConfiguration()
DInsecureEapNetworkHandler.java147 @NonNull WifiNative wifiNative, in InsecureEapNetworkHandler() argument
158 mWifiNative = wifiNative; in InsecureEapNetworkHandler()
/packages/modules/Wifi/service/java/com/android/server/wifi/aware/
DWifiAwareService.java59 WifiNative wifiNative = wifiInjector.getWifiNative(); in onBootPhase() local
68 wifiNative, featureFlags); in onBootPhase()
DWifiAwareNativeManager.java57 WifiNative wifiNative, in WifiAwareNativeManager() argument
61 mWifiNative = wifiNative; in WifiAwareNativeManager()
/packages/modules/Wifi/service/java/com/android/server/wifi/usd/
DUsdNativeManager.java95 public UsdNativeManager(WifiNative wifiNative) { in UsdNativeManager() argument
96 mWifiNative = wifiNative; in UsdNativeManager()
/packages/modules/Wifi/service/java/com/android/server/wifi/b2b/
DWifiRoamingModeManager.java39 public WifiRoamingModeManager(WifiNative wifiNative, in WifiRoamingModeManager() argument
42 this.mWifiNative = wifiNative; in WifiRoamingModeManager()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DScanTestUtil.java50 public static void setupMockChannels(WifiNative wifiNative, int[] channels24, int[] channels5, in setupMockChannels() argument
52 when(wifiNative.getChannelsForBand(WifiScanner.WIFI_BAND_24_GHZ)) in setupMockChannels()
54 when(wifiNative.getChannelsForBand(WifiScanner.WIFI_BAND_5_GHZ)) in setupMockChannels()
56 when(wifiNative.getChannelsForBand(WifiScanner.WIFI_BAND_5_GHZ_DFS_ONLY)) in setupMockChannels()
58 when(wifiNative.getChannelsForBand(WifiScanner.WIFI_BAND_6_GHZ)) in setupMockChannels()
60 when(wifiNative.getChannelsForBand(WifiScanner.WIFI_BAND_60_GHZ)) in setupMockChannels()
DSarManagerTest.java108 private void captureSarInfo(WifiNative wifiNative) { in captureSarInfo() argument
111 verify(wifiNative).selectTxPowerScenario(sarInfoCaptor.capture()); in captureSarInfo()
/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/
DWifiP2pNative.java144 WifiNative wifiNative, in WifiP2pNative() argument
151 mWifiNative = wifiNative; in WifiP2pNative()
/packages/modules/Wifi/service/java/com/android/server/wifi/coex/
DCoexManager.java279 @NonNull WifiNative wifiNative, in CoexManager() argument
285 mWifiNative = wifiNative; in CoexManager()

12