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.java102 @Mock private WifiNative.SoftApListener mSoftApListener; field in WificondControlTest
441 TEST_INTERFACE_NAME, mSoftApListener)); in testTeardownSoftApInterfaceClearsHandles()
923 TEST_INTERFACE_NAME, mSoftApListener)); in testSoftApListenerInvocation()
928 verify(mSoftApListener).onConnectedClientsChanged(Arrays.asList(testClients)); in testSoftApListenerInvocation()
934 verify(mSoftApListener).onSoftApChannelSwitched(eq(channelFrequency), eq(channelBandwidth)); in testSoftApListenerInvocation()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWificondControl.java169 private SoftApListener mSoftApListener; field in WificondControl.ApInterfaceEventCallback
172 mSoftApListener = listener; in ApInterfaceEventCallback()
184 mSoftApListener.onConnectedClientsChanged(Arrays.asList(clients)); in onConnectedClientsChanged()
189 mSoftApListener.onSoftApChannelSwitched(frequency, bandwidth); in onSoftApChannelSwitched()
DSoftApManager.java108 private final SoftApListener mSoftApListener = new SoftApListener() { field in SoftApManager
295 if (!mWifiNative.startSoftAp(mApInterfaceName, localConfig, mSoftApListener)) { in startSoftAp()