Searched defs:wifiNative (Results 1 - 12 of 12) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
H A DHalChannelHelper.java33 public HalChannelHelper(WifiNative wifiNative) { argument
34 mWifiNative = wifiNative;
H A DHalWifiScannerImpl.java43 public HalWifiScannerImpl(Context context, WifiNative wifiNative, Looper looper, Clock clock) { argument
44 mWifiNative = wifiNative;
45 mChannelHelper = new HalChannelHelper(wifiNative);
47 new SupplicantWifiScannerImpl(context, wifiNative, mChannelHelper, looper, clock);
H A DSupplicantWifiScannerImpl.java134 public SupplicantWifiScannerImpl(Context context, WifiNative wifiNative, argument
137 mWifiNative = wifiNative;
154 public SupplicantWifiScannerImpl(Context context, WifiNative wifiNative, Looper looper, argument
157 this(context, wifiNative, new NoBandChannelHelper(), looper, clock);
1050 public HwPnoDebouncer(WifiNative wifiNative, AlarmManager alarmManager, argument
1052 mWifiNative = wifiNative;
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DTestUtil.java37 * Override wifi interface using {@code wifiNative}.
39 public static void installWlanWifiNative(WifiNative wifiNative) throws Exception { argument
42 field.set(null, wifiNative);
44 when(wifiNative.getInterfaceName()).thenReturn("mockWlan");
H A DScanTestUtil.java41 public static void setupMockChannels(WifiNative wifiNative, int[] channels24, int[] channels5, argument
43 when(wifiNative.getChannelsForBand(WifiScanner.WIFI_BAND_24_GHZ))
45 when(wifiNative.getChannelsForBand(WifiScanner.WIFI_BAND_5_GHZ))
47 when(wifiNative.getChannelsForBand(WifiScanner.WIFI_BAND_5_GHZ_DFS_ONLY))
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
H A DApConfigUtil.java106 * @param wifiNative reference to WifiNative
112 public static int updateApChannelConfig(WifiNative wifiNative, argument
117 if (!wifiNative.isHalStarted()) {
134 wifiNative.getChannelsForBand(WifiScanner.WIFI_BAND_5_GHZ));
136 if (wifiNative.isGetChannelsForBandSupported()) {
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DSoftApManager.java71 WifiNative wifiNative,
79 mWifiNative = wifiNative;
70 SoftApManager(Looper looper, WifiNative wifiNative, INetworkManagementService nmService, String countryCode, ArrayList<Integer> allowed2GChannels, Listener listener) argument
H A DWifiCountryCode.java43 WifiNative wifiNative,
48 mWifiNative = wifiNative;
42 WifiCountryCode( WifiNative wifiNative, String oemDefaultCountryCode, String persistentCountryCode, boolean revertCountryCodeOnCellularLoss) argument
H A DFrameworkFacade.java52 Context context, WifiStateMachine stateMachine, WifiNative wifiNative,
54 return new WifiLogger(context, stateMachine, wifiNative, buildProperties);
134 * @param wifiNative reference to WifiNative
143 Context context, Looper looper, WifiNative wifiNative,
148 looper, wifiNative, nmService, countryCode,
163 public WifiConfigManager makeWifiConfigManager(Context context, WifiNative wifiNative, argument
166 return new WifiConfigManager(context, wifiNative, frameworkFacade, clock, userManager,
51 makeRealLogger( Context context, WifiStateMachine stateMachine, WifiNative wifiNative, BuildProperties buildProperties) argument
142 makeSoftApManager( Context context, Looper looper, WifiNative wifiNative, INetworkManagementService nmService, ConnectivityManager cm, String countryCode, ArrayList<Integer> allowed2GChannels, SoftApManager.Listener listener) argument
H A DWifiConfigStore.java105 WifiConfigStore(Context context, WifiNative wifiNative, KeyStore keyStore, LocalLog localLog, argument
108 mWifiNative = wifiNative;
H A DWifiLogger.java110 public WifiLogger(Context context, WifiStateMachine wifiStateMachine, WifiNative wifiNative, argument
118 mWifiNative = wifiNative;
H A DWifiConfigManager.java341 WifiConfigManager(Context context, WifiNative wifiNative, FrameworkFacade facade, Clock clock, argument
350 mLocalLog = wifiNative.getLocalLog();
402 mSupplicantBridge = new SupplicantBridge(wifiNative, mSupplicantBridgeCallbacks);
409 new WifiConfigStore(context, wifiNative, mKeyStore, mLocalLog, mShowNetworks, true);

Completed in 104 milliseconds