OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:channelcollection
(Results
1 - 11
of
11
) sorted by null
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/scanner/
WificondScannerTest.java
33
import com.android.server.wifi.scanner.ChannelHelper.
ChannelCollection
;
69
// Use mocked ChannelHelper and
ChannelCollection
to simulate the scenario
72
ChannelCollection
channelCollection
= mock(
ChannelCollection
.class);
73
when(channelHelper.createChannelCollection()).thenReturn(
channelCollection
);
74
when(
channelCollection
.isEmpty()).thenReturn(true);
ChannelHelperTest.java
116
* {@link com.android.server.wifi.scanner.ChannelHelper.
ChannelCollection
}.
120
ChannelHelper.
ChannelCollection
mChannelCollection;
124
* Create an instance of
ChannelCollection
that calls all real methods, but allows mocking
129
mChannelCollection = mock(ChannelHelper.
ChannelCollection
.class);
BaseWifiScannerImplTest.java
42
import com.android.server.wifi.scanner.ChannelHelper.
ChannelCollection
;
94
ChannelCollection
collection = mScanner.getChannelHelper().createChannelCollection();
100
ChannelCollection
collection = mScanner.getChannelHelper().createChannelCollection();
106
ChannelCollection
collection = mScanner.getChannelHelper().createChannelCollection();
WificondPnoScannerTest.java
39
import com.android.server.wifi.scanner.ChannelHelper.
ChannelCollection
;
188
ChannelCollection
collection = mScanner.getChannelHelper().createChannelCollection();
KnownBandsChannelHelperTest.java
263
ChannelHelper.
ChannelCollection
mChannelCollection;
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
WificondScannerImpl.java
33
import com.android.server.wifi.scanner.ChannelHelper.
ChannelCollection
;
165
ChannelCollection
allFreqs = mChannelHelper.createChannelCollection();
353
private static boolean isAllChannelsScanned(
ChannelCollection
channelCollection
) {
357
return (
channelCollection
.containsBand(WifiScanner.WIFI_BAND_24_GHZ)
358
&&
channelCollection
.containsBand(WifiScanner.WIFI_BAND_5_GHZ));
499
ChannelCollection
singleScanFreqs,
509
public
ChannelCollection
singleScanFreqs;
BackgroundScanScheduler.java
31
import com.android.server.wifi.scanner.ChannelHelper.
ChannelCollection
;
134
private final
ChannelCollection
mChannelCollection;
189
public
ChannelCollection
getChannelCollection() {
613
ChannelCollection
targetBucketChannelCol) {
646
ChannelCollection
targetBucketChannelCol = targetBucket.getChannelCollection();
[
all
...]
ChannelHelper.java
45
public abstract
ChannelCollection
createChannelCollection();
66
*
ChannelCollection
created using {@link #createChannelCollection createChannelCollection} is
77
public abstract class
ChannelCollection
{
KnownBandsChannelHelper.java
133
*
ChannelCollection
that merges channels so that the optimal schedule will be generated.
137
public class KnownBandsChannelCollection extends
ChannelCollection
{
WifiScanningServiceImpl.java
63
import com.android.server.wifi.scanner.ChannelHelper.
ChannelCollection
;
[
all
...]
/frameworks/base/services/
art-profile
155
HPLcom/android/server/wifi/scanner/ChannelHelper$
ChannelCollection
;->addBand(I)V
156
HPLcom/android/server/wifi/scanner/ChannelHelper$
ChannelCollection
;->addChannel(I)V
157
HPLcom/android/server/wifi/scanner/ChannelHelper$
ChannelCollection
;->clear()V
158
HPLcom/android/server/wifi/scanner/ChannelHelper$
ChannelCollection
;->containsBand(I)Z
159
HPLcom/android/server/wifi/scanner/ChannelHelper$
ChannelCollection
;->containsChannel(I)Z
160
HPLcom/android/server/wifi/scanner/ChannelHelper$
ChannelCollection
;->fillBucketSettings(Lcom/android/server/wifi/WifiNative$BucketSettings;I)V
161
HPLcom/android/server/wifi/scanner/ChannelHelper$
ChannelCollection
;->getChannelSet()Ljava/util/Set;
162
HPLcom/android/server/wifi/scanner/ChannelHelper$
ChannelCollection
;->getContainingChannelsFromBand(I)Ljava/util/Set;
163
HPLcom/android/server/wifi/scanner/ChannelHelper$
ChannelCollection
;->getMissingChannelsFromBand(I)Ljava/util/Set;
164
HPLcom/android/server/wifi/scanner/ChannelHelper$
ChannelCollection
;->getScanFreqs()Ljava/util/Set
[
all
...]
Completed in 276 milliseconds