Home | History | Annotate | Download | only in server

Lines Matching defs:numChannels

1548      * @param numChannels the number of allowed channels. Must be greater than 0
1552 * {@code numChannels} is outside the valid range.
1554 public boolean setNumAllowedChannels(int numChannels, boolean persist) {
1555 Slog.i(TAG, "WifiService trying to setNumAllowed to "+numChannels+
1567 if (validChan == numChannels) {
1579 MESSAGE_SET_CHANNELS, numChannels, (persist ? 1 : 0)).sendToTarget();
1586 * @param numChannels the number of allowed channels. Must be greater than 0
1591 private boolean setNumAllowedChannelsBlocking(int numChannels, boolean persist) {
1595 numChannels);
1597 return mWifiStateTracker.setNumAllowedChannels(numChannels);
1606 int numChannels;
1615 numChannels = mWifiStateTracker.getNumAllowedChannels();
1616 if (numChannels < 0) {
1617 numChannels = Settings.Secure.getInt(mContext.getContentResolver(),
1621 return numChannels;