Searched refs:p2pSetListenChannel (Results 1 – 4 of 4) sorted by relevance
580 public boolean p2pSetListenChannel(int lc) { in p2pSetListenChannel() method in WifiP2pNative
7607 if (!mWifiNative.p2pSetListenChannel(mUserListenChannel)) { in updateP2pChannels()
4532 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 …]
645 assertTrue(mWifiP2pNative.p2pSetListenChannel(1)); in testP2pSetListenChannel()