Searched refs:p2pChannels (Results 1 – 3 of 3) sorted by relevance
/packages/modules/Wifi/framework/java/android/net/wifi/p2p/ |
D | WifiP2pManager.java | 2560 Bundle p2pChannels = new Bundle(); in setWifiP2pChannels() local 2561 p2pChannels.putInt("lc", listeningChannel); in setWifiP2pChannels() 2562 p2pChannels.putInt("oc", operatingChannel); in setWifiP2pChannels() 2564 SET_CHANNEL, 0, channel.putListener(listener), p2pChannels); in setWifiP2pChannels()
|
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/p2p/ |
D | WifiP2pServiceImplTest.java | 735 Bundle p2pChannels) throws Exception { in sendSetChannelMsg() argument 739 msg.obj = p2pChannels; in sendSetChannelMsg() 4529 Bundle p2pChannels = new Bundle(); in testSetChannelSuccess() local 4530 p2pChannels.putInt("lc", 1); in testSetChannelSuccess() 4531 p2pChannels.putInt("oc", 2); in testSetChannelSuccess() 4534 sendSetChannelMsg(mClientMessenger, p2pChannels); in testSetChannelSuccess() 4552 Bundle p2pChannels = new Bundle(); in testSetChannelFailureWhenNativeCallSetListenChannelFailure() local 4553 p2pChannels.putInt("lc", 1); in testSetChannelFailureWhenNativeCallSetListenChannelFailure() 4554 p2pChannels.putInt("oc", 2); in testSetChannelFailureWhenNativeCallSetListenChannelFailure() 4557 sendSetChannelMsg(mClientMessenger, p2pChannels); in testSetChannelFailureWhenNativeCallSetListenChannelFailure() [all …]
|
/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/ |
D | WifiP2pServiceImpl.java | 3490 Bundle p2pChannels = (Bundle) message.obj; in processMessageImpl() local 3491 mUserListenChannel = p2pChannels.getInt("lc", 0); in processMessageImpl() 3492 mUserOperatingChannel = p2pChannels.getInt("oc", 0); in processMessageImpl() 3967 Bundle p2pChannels = (Bundle) message.obj; in processMessageImpl() local 3968 mUserListenChannel = p2pChannels.getInt("lc", 0); in processMessageImpl() 3969 mUserOperatingChannel = p2pChannels.getInt("oc", 0); in processMessageImpl()
|