Home
last modified time | relevance | path

Searched refs:ICoexCallback (Results 1 – 9 of 9) sorted by relevance

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/coex/
DCoexManagerTest.java49 import android.net.wifi.ICoexCallback;
330 ICoexCallback remoteCallback1 = mock(ICoexCallback.class); in testRegisteredRemoteCoexCallback_setCoexUnsafeChannels_callbackIsNotified()
332 ICoexCallback remoteCallback2 = mock(ICoexCallback.class); in testRegisteredRemoteCoexCallback_setCoexUnsafeChannels_callbackIsNotified()
359 ICoexCallback remoteCallback1 = mock(ICoexCallback.class); in testUnregisteredRemoteCoexCallback_setCoexUnsafeChannels_callbackIsNotNotified()
361 ICoexCallback remoteCallback2 = mock(ICoexCallback.class); in testUnregisteredRemoteCoexCallback_setCoexUnsafeChannels_callbackIsNotNotified()
842 ICoexCallback remoteCallback = mock(ICoexCallback.class); in testOnPhysicalChannelConfigChanged_sameChannels_doesNotUpdateListeners()
/packages/modules/Wifi/framework/java/android/net/wifi/
DICoexCallback.aidl25 oneway interface ICoexCallback interface
DIWifiManager.aidl31 import android.net.wifi.ICoexCallback;
233 void registerCoexCallback(in ICoexCallback callback); in registerCoexCallback()
235 void unregisterCoexCallback(in ICoexCallback callback); in unregisterCoexCallback()
DBaseWifiService.java467 public void registerCoexCallback(ICoexCallback callback) { in registerCoexCallback()
472 public void unregisterCoexCallback(ICoexCallback callback) { in unregisterCoexCallback()
DWifiManager.java5624 private static class CoexCallbackProxy extends ICoexCallback.Stub {
/packages/modules/Wifi/service/java/com/android/server/wifi/coex/
DCoexManager.java49 import android.net.wifi.ICoexCallback;
275 private final RemoteCallbackList<ICoexCallback> mRemoteCallbackList =
276 new RemoteCallbackList<ICoexCallback>();
402 public void registerRemoteCoexCallback(ICoexCallback callback) { in registerRemoteCoexCallback()
418 public void unregisterRemoteCoexCallback(ICoexCallback callback) { in unregisterRemoteCoexCallback()
/packages/modules/Wifi/framework/tests/src/android/net/wifi/
DWifiManagerTest.java402 ArgumentCaptor<ICoexCallback.Stub> callbackCaptor = in testAddCoexCallbackAndReceiveEvent()
403 ArgumentCaptor.forClass(ICoexCallback.Stub.class); in testAddCoexCallbackAndReceiveEvent()
416 ArgumentCaptor<ICoexCallback.Stub> callbackCaptor = in testRegisterCoexCallbackWithTheTargetExecutor()
417 ArgumentCaptor.forClass(ICoexCallback.Stub.class); in testRegisterCoexCallbackWithTheTargetExecutor()
432 ArgumentCaptor<ICoexCallback.Stub> callbackCaptor = in testRegisterUnregisterThenRegisterAgainWithCoexCallback()
433 ArgumentCaptor.forClass(ICoexCallback.Stub.class); in testRegisterUnregisterThenRegisterAgainWithCoexCallback()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DWifiServiceImpl.java107 import android.net.wifi.ICoexCallback;
1638 public void registerCoexCallback(@NonNull ICoexCallback callback) { in registerCoexCallback()
1676 public void unregisterCoexCallback(@NonNull ICoexCallback callback) { in unregisterCoexCallback()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DWifiServiceImplTest.java155 import android.net.wifi.ICoexCallback;
450 @Mock ICoexCallback mCoexCallback;