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 DWifiNative.java485 if (settings.channelSet != null && !settings.channelSet.isEmpty()) {
488 for (String channel : settings.channelSet) {
H A DWifiServiceImpl.java423 settings.channelSet.add(channel);
H A DWifiStateMachine.java248 settings.channelSet = new ArrayList<WifiChannel>();
254 settings.channelSet.add(channel);
1861 if (settings != null && settings.channelSet != null) {
1864 for (WifiChannel channel : settings.channelSet) {

Completed in 1416 milliseconds