Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/
DWifiP2pNative.java580 public boolean p2pSetListenChannel(int lc) { in p2pSetListenChannel() method in WifiP2pNative
DWifiP2pServiceImpl.java7607 if (!mWifiNative.p2pSetListenChannel(mUserListenChannel)) { in updateP2pChannels()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/p2p/
DWifiP2pServiceImplTest.java4532 when(mWifiNative.p2pSetListenChannel(anyInt())).thenReturn(true); in testSetChannelSuccess()
4535 verify(mWifiNative).p2pSetListenChannel(eq(1)); in testSetChannelSuccess()
4555 when(mWifiNative.p2pSetListenChannel(anyInt())).thenReturn(false); in testSetChannelFailureWhenNativeCallSetListenChannelFailure()
4558 verify(mWifiNative).p2pSetListenChannel(eq(1)); in testSetChannelFailureWhenNativeCallSetListenChannelFailure()
4575 when(mWifiNative.p2pSetListenChannel(anyInt())).thenReturn(true); in testSetChannelFailureWhenNativeCallSetOperatingChannelFailure()
4578 verify(mWifiNative).p2pSetListenChannel(eq(1)); in testSetChannelFailureWhenNativeCallSetOperatingChannelFailure()
4612 when(mWifiNative.p2pSetListenChannel(anyInt())).thenReturn(true); in testSetChannelFailureWhenObjectIsNull()
4618 when(mWifiNative.p2pSetListenChannel(anyInt())).thenReturn(false); in testSetChannelFailureWhenObjectIsNull()
4622 verify(mWifiNative, times(1)).p2pSetListenChannel(anyInt()); in testSetChannelFailureWhenObjectIsNull()
6383 when(mWifiNative.p2pSetListenChannel(anyInt())).thenReturn(true); in setupCoexMock()
[all …]
DWifiP2pNativeTest.java645 assertTrue(mWifiP2pNative.p2pSetListenChannel(1)); in testP2pSetListenChannel()