Home
last modified time | relevance | path

Searched refs:mSoftApListener (Results 1 – 4 of 4) sorted by relevance

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DHostapdHalTest.java65 private @Mock WifiNative.SoftApListener mSoftApListener; field in HostapdHalTest
230 assertTrue(mHostapdHal.addAccessPoint(IFACE_NAME, configuration, mSoftApListener)); in testAddAccessPointSuccess_Psk_Band2G()
263 assertTrue(mHostapdHal.addAccessPoint(IFACE_NAME, configuration, mSoftApListener)); in testAddAccessPointSuccess_Open_Band5G()
297 assertTrue(mHostapdHal.addAccessPoint(IFACE_NAME, configuration, mSoftApListener)); in testAddAccessPointSuccess_Psk_Band5G_Hidden()
335 assertTrue(mHostapdHal.addAccessPoint(IFACE_NAME, configuration, mSoftApListener)); in testAddAccessPointSuccess_Psk_Band2G_WithACS()
373 assertTrue(mHostapdHal.addAccessPoint(IFACE_NAME, configuration, mSoftApListener)); in testAddAccessPointSuccess_Psk_Band2G_WithIeee80211AC()
410 assertTrue(mHostapdHal.addAccessPoint(IFACE_NAME, configuration, mSoftApListener)); in testAddAccessPointSuccess_Psk_BandAny_WithACS()
448 assertTrue(mHostapdHal.addAccessPoint(IFACE_NAME, configuration, mSoftApListener)); in testAddAccessPointSuccess_Psk_BandAny_Downgraded_WithoutACS()
513 assertTrue(mHostapdHal.addAccessPoint(IFACE_NAME, configuration, mSoftApListener)); in testAddAccessPointSuccess_Psk_BandAny_WithACS_AcsChannels()
546 assertFalse(mHostapdHal.addAccessPoint(IFACE_NAME, configuration, mSoftApListener)); in testAddAccessPointInvalidBandFailure()
[all …]
DWificondControlTest.java101 @Mock private WifiNative.SoftApListener mSoftApListener; field in WificondControlTest
440 TEST_INTERFACE_NAME, mSoftApListener)); in testTeardownSoftApInterfaceClearsHandles()
928 TEST_INTERFACE_NAME, mSoftApListener)); in testSoftApListenerInvocation()
933 verify(mSoftApListener).onNumAssociatedStationsChanged(eq(numStations)); in testSoftApListenerInvocation()
939 verify(mSoftApListener).onSoftApChannelSwitched(eq(channelFrequency), eq(channelBandwidth)); in testSoftApListenerInvocation()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWificondControl.java179 private SoftApListener mSoftApListener; field in WificondControl.ApInterfaceEventCallback
182 mSoftApListener = listener; in ApInterfaceEventCallback()
187 mSoftApListener.onNumAssociatedStationsChanged(numStations); in onNumAssociatedStationsChanged()
192 mSoftApListener.onSoftApChannelSwitched(frequency, bandwidth); in onSoftApChannelSwitched()
DSoftApManager.java101 private final SoftApListener mSoftApListener = new SoftApListener() { field in SoftApManager
286 if (!mWifiNative.startSoftAp(mApInterfaceName, localConfig, mSoftApListener)) { in startSoftAp()