Home
last modified time | relevance | path

Searched refs:channelSettings (Results 1 – 6 of 6) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/wificond/
DSingleScanSettings.java36 public ArrayList<ChannelSettings> channelSettings; field in SingleScanSettings
54 && channelSettings.equals(settings.channelSettings) in equals()
61 return Objects.hash(scanType, channelSettings, hiddenNetworks); in hashCode()
87 out.writeTypedList(channelSettings); in writeToParcel()
104 result.channelSettings = new ArrayList<ChannelSettings>();
105 in.readTypedList(result.channelSettings, ChannelSettings.CREATOR);
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/wificond/
DSingleScanSettingsTest.java74 scanSettings.channelSettings = in canSerializeAndDeserialize()
97 scanSettings1.channelSettings = in testAsHashMapKey()
104 scanSettings2.channelSettings = in testAsHashMapKey()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
DKnownBandsChannelHelper.java258 WifiNative.ChannelSettings channelSettings = new WifiNative.ChannelSettings(); in fillBucketSettings() local
259 channelSettings.frequency = mChannels.valueAt(i); in fillBucketSettings()
260 bucketSettings.channels[i] = channelSettings; in fillBucketSettings()
DBackgroundScanScheduler.java157 WifiNative.ChannelSettings channelSettings = new WifiNative.ChannelSettings(); in createChannelSettings() local
158 channelSettings.frequency = frequency; in createChannelSettings()
159 return channelSettings; in createChannelSettings()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DWificondControlTest.java1280 ArrayList<ChannelSettings> channelSettings = settings.channelSettings; in matches() local
1284 for (ChannelSettings channel : channelSettings) { in matches()
1291 if (channelSettings != null && channelSettings.size() > 0) { in matches()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWificondControl.java686 settings.channelSettings = new ArrayList<>(); in scan()
693 settings.channelSettings.add(channel); in scan()