Searched refs:channelSet (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/wifi/java/android/net/wifi/
H A DScanSettings.java35 public Collection<WifiChannel> channelSet; field in class:ScanSettings
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
[all...]
H A DBatchedScanSettings.java75 public Collection<String> channelSet; field in class:BatchedScanSettings
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
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiServiceImpl.java404 settings.channelSet.add(channel);
569 if (s.channelSet == null || s.channelSet.isEmpty()) {
573 currentChannelCount = s.channelSet.size();
575 if (s.channelSet.contains("A")) currentChannelCount += (9 - 1);
576 if (s.channelSet.contains("B")) currentChannelCount += (11 - 1);
610 if (s.channelSet != null && s.channelSet.size() != 0) {
611 if (setting.channelSet == null || setting.channelSet
[all...]
H A DWifiNative.java422 if (settings.channelSet != null && !settings.channelSet.isEmpty()) {
425 for (String channel : settings.channelSet) {
H A DWifiStateMachine.java1870 if (settings != null && settings.channelSet != null) {
1873 for (WifiChannel channel : settings.channelSet) {

Completed in 1397 milliseconds