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

  /frameworks/base/wifi/java/android/net/wifi/
ScanSettings.java 35 public Collection<WifiChannel> channelSet;
42 if (source.channelSet != null)
43 channelSet = new ArrayList<WifiChannel>(source.channelSet);
48 for (WifiChannel channel : channelSet)
62 out.writeInt(channelSet == null ? 0 : channelSet.size());
63 if (channelSet != null)
64 for (WifiChannel channel : channelSet) channel.writeToParcel(out, flags);
75 settings.channelSet = new ArrayList<WifiChannel>(size)
    [all...]
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...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiServiceImpl.java 546 if (s.channelSet == null || s.channelSet.isEmpty()) {
550 currentChannelCount = s.channelSet.size();
552 if (s.channelSet.contains("A")) currentChannelCount += (9 - 1);
553 if (s.channelSet.contains("B")) currentChannelCount += (11 - 1);
587 if (s.channelSet != null && s.channelSet.size() != 0) {
588 if (setting.channelSet == null || setting.channelSet.size() != 0) {
589 if (setting.channelSet == null) setting.channelSet = new ArrayList<String>()
    [all...]
WifiNative.java 418 if (settings.channelSet != null && !settings.channelSet.isEmpty()) {
421 for (String channel : settings.channelSet) {
    [all...]
WifiStateMachine.java     [all...]

Completed in 386 milliseconds