Searched refs:operatingChannel (Results 1 – 7 of 7) sorted by relevance
/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/ |
D | WifiP2pShellCommand.java | 322 int listeningChannel, operatingChannel; in handleCommand() local 325 operatingChannel = Integer.parseInt(getNextArgRequired()); in handleCommand() 332 if (listeningChannel < 0 || operatingChannel < 0) { in handleCommand() 338 listeningChannel, operatingChannel, actionListener); in handleCommand()
|
D | ISupplicantP2pIfaceHal.java | 362 boolean setOperatingChannel(int operatingChannel, in setOperatingChannel() argument
|
D | SupplicantP2pIfaceHal.java | 663 public boolean setOperatingChannel(int operatingChannel, in setOperatingChannel() argument 670 return mP2pIfaceHal.setOperatingChannel(operatingChannel, unsafeChannels); in setOperatingChannel()
|
D | SupplicantP2pIfaceHalAidlImpl.java | 1447 public boolean setOperatingChannel(int operatingChannel, in setOperatingChannel() argument 1459 if (operatingChannel >= 1 && operatingChannel <= 165) { in setOperatingChannel() 1460 int freq = (operatingChannel <= 14 ? 2407 : 5000) + operatingChannel * 5; in setOperatingChannel()
|
D | SupplicantP2pIfaceHalHidlImpl.java | 1559 public boolean setOperatingChannel(int operatingChannel, in setOperatingChannel() argument 1566 if (operatingChannel >= 1 && operatingChannel <= 165) { in setOperatingChannel() 1567 int freq = (operatingChannel <= 14 ? 2407 : 5000) + operatingChannel * 5; in setOperatingChannel()
|
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/p2p/ |
D | WifiP2pShellCommandTest.java | 281 final int listeningChannel = 6, operatingChannel = 149; in testP2pSetChannels() local 284 Integer.toString(operatingChannel)); in testP2pSetChannels() 286 eq(listeningChannel), eq(operatingChannel), any()); in testP2pSetChannels()
|
/packages/modules/Wifi/framework/java/android/net/wifi/p2p/ |
D | WifiP2pManager.java | 2558 int operatingChannel, @Nullable ActionListener listener) { in setWifiP2pChannels() argument 2562 p2pChannels.putInt("oc", operatingChannel); in setWifiP2pChannels()
|