/frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/ |
D | WifiScannerImpl.java | 52 WifiNative wifiNative = WifiInjector.getInstance().getWifiNative(); 54 String ifaceName = wifiNative.getClientInterfaceName(); 58 if (wifiNative.getBgScanCapabilities( 60 return new HalWifiScannerImpl(context, ifaceName, wifiNative, wifiMonitor, 63 return new WificondScannerImpl(context, ifaceName, wifiNative, wifiMonitor, 64 new WificondChannelHelper(wifiNative), looper, clock);
|
D | HalWifiScannerImpl.java | 47 public HalWifiScannerImpl(Context context, String ifaceName, WifiNative wifiNative, in HalWifiScannerImpl() argument 50 mWifiNative = wifiNative; in HalWifiScannerImpl() 51 mChannelHelper = new WificondChannelHelper(wifiNative); in HalWifiScannerImpl() 53 new WificondScannerImpl(context, mIfaceName, wifiNative, wifiMonitor, in HalWifiScannerImpl()
|
D | WificondChannelHelper.java | 33 public WificondChannelHelper(WifiNative wifiNative) { in WificondChannelHelper() argument 34 mWifiNative = wifiNative; in WificondChannelHelper()
|
D | WificondScannerImpl.java | 96 public WificondScannerImpl(Context context, String ifaceName, WifiNative wifiNative, in WificondScannerImpl() argument 101 mWifiNative = wifiNative; in WificondScannerImpl()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/ |
D | PasspointObjectFactory.java | 46 public PasspointEventHandler makePasspointEventHandler(WifiNative wifiNative, in makePasspointEventHandler() argument 48 return new PasspointEventHandler(wifiNative, callbacks); in makePasspointEventHandler() 128 public PasspointProvisioner makePasspointProvisioner(Context context, WifiNative wifiNative, in makePasspointProvisioner() argument 130 return new PasspointProvisioner(context, wifiNative, this, passpointManager, wifiMetrics); in makePasspointProvisioner() 195 public SystemInfo getSystemInfo(Context context, WifiNative wifiNative) { in getSystemInfo() argument 196 return SystemInfo.getInstance(context, wifiNative); in getSystemInfo()
|
D | SystemInfo.java | 45 SystemInfo(Context context, WifiNative wifiNative) { in SystemInfo() argument 48 mWifiNative = wifiNative; in SystemInfo() 51 public static SystemInfo getInstance(@NonNull Context context, @NonNull WifiNative wifiNative) { in getInstance() argument 53 sSystemInfo = new SystemInfo(context, wifiNative); in getInstance()
|
D | PasspointManager.java | 336 WifiNative wifiNative, WifiKeyStore keyStore, Clock clock, SIMAccessor simAccessor, in PasspointManager() argument 341 mPasspointEventHandler = objectFactory.makePasspointEventHandler(wifiNative, in PasspointManager() 361 mPasspointProvisioner = objectFactory.makePasspointProvisioner(context, wifiNative, in PasspointManager()
|
D | PasspointProvisioner.java | 96 public PasspointProvisioner(Context context, WifiNative wifiNative, in PasspointProvisioner() argument 105 mSystemInfo = objectFactory.getSystemInfo(context, wifiNative); in PasspointProvisioner()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/ |
D | ApConfigUtil.java | 115 public static int updateApChannelConfig(WifiNative wifiNative, in updateApChannelConfig() argument 120 if (!wifiNative.isHalStarted()) { in updateApChannelConfig() 137 wifiNative.getChannelsForBand(WifiScanner.WIFI_BAND_5_GHZ)); in updateApChannelConfig()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
D | BaseWifiDiagnostics.java | 24 public BaseWifiDiagnostics(WifiNative wifiNative) { in BaseWifiDiagnostics() argument 25 mWifiNative = wifiNative; in BaseWifiDiagnostics()
|
D | WifiConnectivityHelper.java | 43 WifiConnectivityHelper(WifiNative wifiNative) { in WifiConnectivityHelper() argument 44 mWifiNative = wifiNative; in WifiConnectivityHelper()
|
D | WifiCountryCode.java | 54 WifiNative wifiNative, in WifiCountryCode() argument 58 mWifiNative = wifiNative; in WifiCountryCode()
|
D | ScanOnlyModeManager.java | 58 @NonNull WifiNative wifiNative, @NonNull Listener listener, in ScanOnlyModeManager() argument 63 mWifiNative = wifiNative; in ScanOnlyModeManager()
|
D | LinkProbeManager.java | 107 public LinkProbeManager(Clock clock, WifiNative wifiNative, WifiMetrics wifiMetrics, in LinkProbeManager() argument 110 mWifiNative = wifiNative; in LinkProbeManager()
|
D | ClientModeManager.java | 57 ClientModeManager(Context context, @NonNull Looper looper, WifiNative wifiNative, in ClientModeManager() argument 60 mWifiNative = wifiNative; in ClientModeManager()
|
D | SarManager.java | 101 WifiNative wifiNative, in SarManager() argument 106 mWifiNative = wifiNative; in SarManager()
|
D | ActiveModeWarden.java | 130 WifiNative wifiNative, in ActiveModeWarden() argument 137 mWifiNative = wifiNative; in ActiveModeWarden()
|
D | DppManager.java | 91 DppManager(Looper looper, WifiNative wifiNative, WifiConfigManager wifiConfigManager, in DppManager() argument 94 mWifiNative = wifiNative; in DppManager()
|
D | WifiLockManager.java | 85 WifiNative wifiNative, Clock clock, WifiMetrics wifiMetrics) { in WifiLockManager() argument 92 mWifiNative = wifiNative; in WifiLockManager()
|
D | SoftApManager.java | 131 @NonNull WifiNative wifiNative, in SoftApManager() argument 141 mWifiNative = wifiNative; in SoftApManager()
|
D | WifiNetworkSelector.java | 964 WifiMetrics wifiMetrics, WifiNative wifiNative) { in WifiNetworkSelector() argument 971 mWifiNative = wifiNative; in WifiNetworkSelector()
|
D | WifiDiagnostics.java | 134 WifiNative wifiNative, BuildProperties buildProperties, in WifiDiagnostics() argument 136 super(wifiNative); in WifiDiagnostics()
|
D | ClientModeImpl.java | 785 WifiNative wifiNative, WrongPasswordNotifier wrongPasswordNotifier, in ClientModeImpl() argument 797 mWifiNative = wifiNative; in ClientModeImpl()
|
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/ |
D | ScanTestUtil.java | 41 public static void setupMockChannels(WifiNative wifiNative, int[] channels24, int[] channels5, in setupMockChannels() argument 43 when(wifiNative.getChannelsForBand(WifiScanner.WIFI_BAND_24_GHZ)) in setupMockChannels() 45 when(wifiNative.getChannelsForBand(WifiScanner.WIFI_BAND_5_GHZ)) in setupMockChannels() 47 when(wifiNative.getChannelsForBand(WifiScanner.WIFI_BAND_5_GHZ_DFS_ONLY)) in setupMockChannels()
|
D | SarManagerTest.java | 126 private void captureSarInfo(WifiNative wifiNative) { in captureSarInfo() argument 129 verify(wifiNative).selectTxPowerScenario(sarInfoCaptor.capture()); in captureSarInfo()
|