Searched refs:p2pChannels (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/wifi/java/android/net/wifi/p2p/ |
D | WifiP2pManager.java | 1353 Bundle p2pChannels = new Bundle(); in setWifiP2pChannels() local 1354 p2pChannels.putInt("lc", lc); in setWifiP2pChannels() 1355 p2pChannels.putInt("oc", oc); in setWifiP2pChannels() 1356 c.mAsyncChannel.sendMessage(SET_CHANNEL, 0, c.putListener(listener), p2pChannels); in setWifiP2pChannels()
|
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/p2p/ |
D | WifiP2pServiceImplTest.java | 428 Bundle p2pChannels) throws Exception { in sendSetChannelMsg() argument 432 msg.obj = p2pChannels; in sendSetChannelMsg() 2416 Bundle p2pChannels = new Bundle(); in testSetChannelSuccess() local 2417 p2pChannels.putInt("lc", 1); in testSetChannelSuccess() 2418 p2pChannels.putInt("oc", 2); in testSetChannelSuccess() 2420 sendSetChannelMsg(mClientMessenger, p2pChannels); in testSetChannelSuccess() 2435 Bundle p2pChannels = new Bundle(); in testSetChannelFailureWhenNativeCallFailure() local 2436 p2pChannels.putInt("lc", 1); in testSetChannelFailureWhenNativeCallFailure() 2437 p2pChannels.putInt("oc", 2); in testSetChannelFailureWhenNativeCallFailure() 2439 sendSetChannelMsg(mClientMessenger, p2pChannels); in testSetChannelFailureWhenNativeCallFailure()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/ |
D | WifiP2pServiceImpl.java | 1719 Bundle p2pChannels = (Bundle) message.obj; in processMessage() local 1720 int lc = p2pChannels.getInt("lc", 0); in processMessage() 1721 int oc = p2pChannels.getInt("oc", 0); in processMessage() 2038 Bundle p2pChannels = (Bundle) message.obj; in processMessage() local 2039 int lc = p2pChannels.getInt("lc", 0); in processMessage() 2040 int oc = p2pChannels.getInt("oc", 0); in processMessage()
|