OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:bucketSettings
(Results
1 - 5
of
5
) sorted by null
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/scanner/
KnownBandsChannelHelperTest.java
283
WifiNative.
BucketSettings
bucketSettings
= new WifiNative.
BucketSettings
();
284
mChannelCollection.fillBucketSettings(
bucketSettings
, Integer.MAX_VALUE);
285
assertThat(
bucketSettings
, channelsAre());
303
WifiNative.
BucketSettings
bucketSettings
= new WifiNative.
BucketSettings
();
304
mChannelCollection.fillBucketSettings(
bucketSettings
, Integer.MAX_VALUE);
305
assertThat(
bucketSettings
, channelsAre())
[
all
...]
NoBandChannelHelperTest.java
219
WifiNative.
BucketSettings
bucketSettings
= new WifiNative.
BucketSettings
();
220
mChannelCollection.fillBucketSettings(
bucketSettings
, Integer.MAX_VALUE);
221
assertThat(
bucketSettings
, channelsAre());
238
WifiNative.
BucketSettings
bucketSettings
= new WifiNative.
BucketSettings
();
239
mChannelCollection.fillBucketSettings(
bucketSettings
, Integer.MAX_VALUE);
240
assertThat(
bucketSettings
, channelsAre())
[
all
...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
BackgroundScanScheduler.java
197
public WifiNative.
BucketSettings
createBucketSettings(int bucketId, int maxChannels) {
235
WifiNative.
BucketSettings
bucketSettings
= new WifiNative.
BucketSettings
();
236
bucketSettings
.bucket = bucketId;
237
bucketSettings
.report_events = reportEvents;
238
bucketSettings
.period_ms = period;
239
bucketSettings
.max_period_ms = maxPeriodInMs;
240
bucketSettings
.step_count = stepCount;
241
mChannelCollection.fillBucketSettings(
bucketSettings
, maxChannels)
[
all
...]
SupplicantWifiScannerImpl.java
242
WifiNative.
BucketSettings
bucket = settings.buckets[i];
360
WifiNative.
BucketSettings
bucket =
409
WifiNative.
BucketSettings
bucketSettings
=
411
if ((
bucketSettings
.report_events
415
singleScanFreqs.addChannels(
bucketSettings
);
416
allFreqs.addChannels(
bucketSettings
);
[
all
...]
WifiScanningServiceImpl.java
687
WifiNative.
BucketSettings
activeBucket = mActiveScanSettings.buckets[0];
745
WifiNative.
BucketSettings
bucketSettings
= new WifiNative.
BucketSettings
();
746
bucketSettings
.bucket = 0;
747
bucketSettings
.period_ms = 0;
748
bucketSettings
.report_events = WifiScanner.REPORT_EVENT_AFTER_EACH_SCAN;
761
bucketSettings
.report_events |= WifiScanner.REPORT_EVENT_FULL_SCAN_RESULT;
[
all
...]
Completed in 439 milliseconds