Home
last modified time | relevance | path

Searched refs:testClients (Results 1 – 5 of 5) sorted by relevance

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DActiveModeWardenTest.java491 final List<WifiClient> testClients = new ArrayList(); in callsWifiServiceCallbackOnSoftApConnectedClientsChanged() local
493 mSoftApManagerCallback.onConnectedClientsChanged(testClients); in callsWifiServiceCallbackOnSoftApConnectedClientsChanged()
496 verify(mSoftApStateMachineCallback).onConnectedClientsChanged(testClients); in callsWifiServiceCallbackOnSoftApConnectedClientsChanged()
505 final List<WifiClient> testClients = new ArrayList(); in testNullCallbackToWifiServiceImplForConnectedClientsChanged() local
511 mSoftApManagerCallback.onConnectedClientsChanged(testClients); in testNullCallbackToWifiServiceImplForConnectedClientsChanged()
DWifiServiceImplTest.java1907 final List<WifiClient> testClients = new ArrayList(); in replacesOldCallbackWithNewCallbackWhenRegisteringTwice() local
1908 testClients.add(testClient); in replacesOldCallbackWithNewCallbackWhenRegisteringTwice()
1909 mStateMachineSoftApCallback.onConnectedClientsChanged(testClients); in replacesOldCallbackWithNewCallbackWhenRegisteringTwice()
1912 verify(mClientSoftApCallback, never()).onConnectedClientsChanged(testClients); in replacesOldCallbackWithNewCallbackWhenRegisteringTwice()
1913 verify(mAnotherSoftApCallback).onConnectedClientsChanged(testClients); in replacesOldCallbackWithNewCallbackWhenRegisteringTwice()
1930 final List<WifiClient> testClients = new ArrayList(); in unregisterSoftApCallbackRemovesCallback() local
1931 testClients.add(testClient); in unregisterSoftApCallbackRemovesCallback()
1932 mStateMachineSoftApCallback.onConnectedClientsChanged(testClients); in unregisterSoftApCallbackRemovesCallback()
1934 verify(mClientSoftApCallback, never()).onConnectedClientsChanged(testClients); in unregisterSoftApCallbackRemovesCallback()
1953 final List<WifiClient> testClients = new ArrayList(); in unregisterSoftApCallbackDoesNotRemoveCallbackIfCallbackIdentifierNotMatching() local
[all …]
DWificondControlTest.java926 final NativeWifiClient[] testClients = new NativeWifiClient[]{}; in testSoftApListenerInvocation() local
927 apInterfaceCallbackCaptor.getValue().onConnectedClientsChanged(testClients); in testSoftApListenerInvocation()
928 verify(mSoftApListener).onConnectedClientsChanged(Arrays.asList(testClients)); in testSoftApListenerInvocation()
DSoftApManagerTest.java1009 List<NativeWifiClient> testClients = new ArrayList(); in schedulesTimeoutTimerWhenAllClientsDisconnect() local
1010 mSoftApListenerCaptor.getValue().onConnectedClientsChanged(testClients); in schedulesTimeoutTimerWhenAllClientsDisconnect()
/frameworks/base/wifi/tests/src/android/net/wifi/
DWifiManagerTest.java770 final List<WifiClient> testClients = new ArrayList(); in softApCallbackProxyCallsOnConnectedClientsChanged() local
771 callbackCaptor.getValue().onConnectedClientsChanged(testClients); in softApCallbackProxyCallsOnConnectedClientsChanged()
773 verify(mSoftApCallback).onConnectedClientsChanged(testClients); in softApCallbackProxyCallsOnConnectedClientsChanged()
787 final List<WifiClient> testClients = new ArrayList(); in softApCallbackProxyCallsOnMultipleUpdates() local
789 callbackCaptor.getValue().onConnectedClientsChanged(testClients); in softApCallbackProxyCallsOnMultipleUpdates()
794 verify(mSoftApCallback).onConnectedClientsChanged(testClients); in softApCallbackProxyCallsOnMultipleUpdates()