HomeSort by relevance Sort by last modified time
    Searched full: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/
WifiNative.java 485 if (settings.channelSet != null && !settings.channelSet.isEmpty()) {
488 for (String channel : settings.channelSet) {
    [all...]
WifiServiceImpl.java 423 settings.channelSet.add(channel);
    [all...]
WifiStateMachine.java 248 settings.channelSet = new ArrayList<WifiChannel>();
254 settings.channelSet.add(channel);
    [all...]

Completed in 98 milliseconds