Home
last modified time | relevance | path

Searched refs:staIface (Results 1 – 8 of 8) sorted by relevance

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/hal/
DWifiStaIfaceTest.java50 WifiStaIfaceSpy(android.hardware.wifi.V1_0.IWifiStaIface staIface) { in WifiStaIfaceSpy() argument
51 super(staIface, mContextMock, mSsidTranslatorMock); in WifiStaIfaceSpy()
54 WifiStaIfaceSpy(android.hardware.wifi.IWifiStaIface staIface) { in WifiStaIfaceSpy() argument
55 super(staIface, mContextMock, mSsidTranslatorMock); in WifiStaIfaceSpy()
60 android.hardware.wifi.V1_0.IWifiStaIface staIface, in createWifiStaIfaceHidlImplMockable() argument
67 android.hardware.wifi.IWifiStaIface staIface, in createWifiStaIfaceAidlImplMockable() argument
80 android.hardware.wifi.IWifiStaIface staIface, in createWifiStaIfaceAidlImplMockable() argument
/packages/modules/Wifi/service/java/com/android/server/wifi/hal/
DWifiStaIface.java163 public WifiStaIface(@NonNull android.hardware.wifi.V1_0.IWifiStaIface staIface, in WifiStaIface() argument
165 mWifiStaIface = createWifiStaIfaceHidlImplMockable(staIface, context, ssidTranslator); in WifiStaIface()
168 public WifiStaIface(@NonNull android.hardware.wifi.IWifiStaIface staIface, in WifiStaIface() argument
170 mWifiStaIface = createWifiStaIfaceAidlImplMockable(staIface, context, ssidTranslator); in WifiStaIface()
174 android.hardware.wifi.V1_0.IWifiStaIface staIface, @NonNull Context context, in createWifiStaIfaceHidlImplMockable() argument
176 return new WifiStaIfaceHidlImpl(staIface, context, ssidTranslator); in createWifiStaIfaceHidlImplMockable()
180 android.hardware.wifi.IWifiStaIface staIface, @NonNull Context context, in createWifiStaIfaceAidlImplMockable() argument
182 return new WifiStaIfaceAidlImpl(staIface, context, ssidTranslator); in createWifiStaIfaceAidlImplMockable()
DWifiStaIfaceAidlImpl.java100 public WifiStaIfaceAidlImpl(@NonNull android.hardware.wifi.IWifiStaIface staIface, in WifiStaIfaceAidlImpl() argument
102 mWifiStaIface = staIface; in WifiStaIfaceAidlImpl()
DWifiStaIfaceHidlImpl.java83 public WifiStaIfaceHidlImpl(@NonNull android.hardware.wifi.V1_0.IWifiStaIface staIface, in WifiStaIfaceHidlImpl() argument
85 mWifiStaIface = staIface; in WifiStaIfaceHidlImpl()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DHalDeviceManagerTest.java366 WifiInterface staIface = validateInterfaceSequence(chipMock, in testCacheMismatchError() local
376 collector.checkThat("STA can't be created", staIface, IsNull.notNullValue()); in testCacheMismatchError()
404 verify(staDestroyedListener).onDestroyed(getName(staIface)); in testCacheMismatchError()
549 WifiInterface staIface = validateInterfaceSequence(chipMock, in testAndTriggerRttLifecycleCallbacksMultiModeChip() local
582 new WifiInterface[]{staIface}, // tearDownList in testAndTriggerRttLifecycleCallbacksMultiModeChip()
585 new InterfaceDestroyedListenerWithIfaceName(getName(staIface), staDestroyedListener) in testAndTriggerRttLifecycleCallbacksMultiModeChip()
904 WifiInterface staIface = validateInterfaceSequence(chipMock, in testDisconnectedP2pTreatedAsOpportunisticAfterTimeout() local
914 collector.checkThat("STA was not created", staIface, IsNull.notNullValue()); in testDisconnectedP2pTreatedAsOpportunisticAfterTimeout()
992 WifiInterface staIface = validateInterfaceSequence(chipMock, in testCreatingIfaceWillDeletePrivilegedIface() local
1002 collector.checkThat("STA can't be created", staIface, IsNull.notNullValue()); in testCreatingIfaceWillDeletePrivilegedIface()
[all …]
DSsidTranslatorTest.java148 String staIface = "wlan0"; in testGetTranslatedSsidForStaIface() local
155 assertThat(ssidTranslator.getTranslatedSsidForStaIface(ambiguousSsid, staIface) in testGetTranslatedSsidForStaIface()
160 WifiSsid.fromString(gbkInterpretation), staIface); in testGetTranslatedSsidForStaIface() local
163 assertThat(ssidTranslator.getTranslatedSsidForStaIface(ambiguousSsid, staIface) in testGetTranslatedSsidForStaIface()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DSsidTranslator.java221 @NonNull WifiSsid untranslated, @NonNull String staIface) { in getTranslatedSsidForStaIface() argument
222 WifiSsid translated = mTranslatedSsidForStaIface.get(staIface); in getTranslatedSsidForStaIface()
236 @NonNull WifiSsid translated, @NonNull String staIface) { in setTranslatedSsidForStaIface() argument
237 mTranslatedSsidForStaIface.put(staIface, translated); in setTranslatedSsidForStaIface()
DHalDeviceManager.java333 WifiStaIface staIface = (WifiStaIface) createIface(HDM_CREATE_IFACE_STA, in createStaIface() local
335 if (staIface != null) { in createStaIface()
336 mClientModeManagers.put(getName(staIface), concreteClientModeManager); in createStaIface()
338 return staIface; in createStaIface()