HomeSort by relevance Sort by last modified time
    Searched refs:channelSet (Results 1 - 3 of 3) sorted by null

  /frameworks/base/wifi/java/android/net/wifi/
BatchedScanSettings.java 75 public Collection<String> channelSet;
97 channelSet = null;
105 if (source.channelSet != null) {
106 channelSet = new ArrayList(source.channelSet);
113 if (channelSet == null || channelSet.isEmpty()) return true;
114 for (String channel : channelSet) {
182 if (channelSet == null) {
183 return (o.channelSet == null)
    [all...]
WifiNative.java 308 if (settings.channelSet != null && !settings.channelSet.isEmpty()) {
311 for (String channel : settings.channelSet) {
  /frameworks/base/services/java/com/android/server/wifi/
WifiService.java 496 if (s.channelSet == null || s.channelSet.isEmpty()) {
500 currentChannelCount = s.channelSet.size();
502 if (s.channelSet.contains("A")) currentChannelCount += (9 - 1);
503 if (s.channelSet.contains("B")) currentChannelCount += (11 - 1);
537 if (s.channelSet != null && s.channelSet.size() != 0) {
538 if (setting.channelSet == null || setting.channelSet.size() != 0) {
539 if (setting.channelSet == null) setting.channelSet = new ArrayList<String>()
    [all...]

Completed in 31 milliseconds