Searched refs:frequency (Results 1 - 25 of 57) sorted by relevance

123

/frameworks/base/core/java/android/provider/
H A DUserDictionary.java30 * frequency information and locale information.
78 * The frequency column. A value between 1 and 255. Higher values imply higher frequency.
81 public static final String FREQUENCY = "frequency";
115 * Sort by descending order of frequency.
119 /** Adds a word to the dictionary, with the given frequency and the specified
133 int frequency, int localeType) {
147 addWord(context, word, frequency, null, locale);
150 /** Adds a word to the dictionary, with the given frequency and the specified
162 int frequency, Strin
132 addWord(Context context, String word, int frequency, int localeType) argument
161 addWord(Context context, String word, int frequency, String shortcut, Locale locale) argument
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
H A DApConfigUtil.java46 * Convert frequency to channel.
47 * @param frequency frequency to convert
48 * @return channel number associated with given frequency, -1 if no match
50 public static int convertFrequencyToChannel(int frequency) { argument
51 if (frequency >= 2412 && frequency <= 2472) {
52 return (frequency - 2412) / 5 + 1;
53 } else if (frequency == 2484) {
55 } else if (frequency >
[all...]
H A DScanResultUtil.java44 scanResult.informationElements, scanResult.anqpLines, scanResult.frequency);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/wificond/
H A DChannelSettings.java33 public int frequency; field in class:ChannelSettings
49 return frequency == channel.frequency;
55 return Objects.hash(frequency);
70 out.writeInt(frequency);
82 result.frequency = in.readInt();
H A DNativeScanResult.java35 public int frequency; field in class:NativeScanResult
49 frequency = source.frequency;
68 out.writeInt(frequency);
90 result.frequency = in.readInt();
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
H A DKnownBandsChannelHelper.java93 private boolean isDfsChannel(int frequency) { argument
96 if (frequency == dfsChannel.frequency) {
104 private int getBandFromChannel(int frequency) { argument
105 if (2400 <= frequency && frequency < 2500) {
107 } else if (isDfsChannel(frequency)) {
109 } else if (5100 <= frequency && frequency < 6000) {
125 if (settingsChannels[i].frequency
153 addChannel(int frequency) argument
[all...]
H A DChannelHelper.java130 addChannel(scanSettings.channels[j].frequency);
143 addChannel(bucketSettings.channels[j].frequency);
156 if (!containsChannel(scanSettings.channels[j].frequency)) {
172 if (containsChannel(scanSettings.channels[j].frequency)) {
189 if (!containsChannel(scanSettings.channels[j].frequency)) {
190 missingChannels.add(scanSettings.channels[j].frequency);
207 if (containsChannel(scanSettings.channels[j].frequency)) {
208 containingChannels.add(scanSettings.channels[j].frequency);
270 sb.append(channels[c].frequency);
287 sb.append(channels[c].frequency);
[all...]
H A DNoBandChannelHelper.java43 if (settings.channels[i].frequency == channel) {
77 public void addChannel(int frequency) { argument
78 mChannels.add(frequency);
162 channelSettings.frequency = mChannels.valueAt(i);
H A DScanScheduleUtil.java42 if (channel1.frequency != channel2.frequency) return false;
134 return channelHelper.settingsContainChannel(settings, result.frequency);
161 if (channelHelper.settingsContainChannel(settings, scanResult.frequency)) {
/frameworks/wilhelm/src/itf/
H A DIVibra.cpp55 static SLresult IVibra_SetFrequency(SLVibraItf self, SLmilliHertz frequency) argument
62 } else if (!(d->minFrequency <= frequency && frequency <= d->maxFrequency)) {
67 thiz->mFrequency = frequency;
85 SLmilliHertz frequency = thiz->mFrequency; local
87 *pFrequency = frequency;
H A DIEqualizer.cpp289 static SLresult IEqualizer_GetBand(SLEqualizerItf self, SLmilliHertz frequency, SLuint16 *pBand) argument
298 // search for band whose center frequency has the closest ratio to 1.0
303 float floatFreq = (float) frequency;
307 if (!(band->mMin <= frequency && frequency <= band->mMax))
311 float ratio = frequency <= band->mCenter ?
327 android_eq_getParam(thiz->mEqEffect, EQ_PARAM_GET_BAND, frequency, &band);
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DRttManagerTest.java67 && params1.frequency == params2.frequency;
78 params.frequency = 5240;
83 params2.frequency = 5220;
H A DScanTestUtil.java141 channelFreqs[i] = channels[i].frequency;
247 assertEquals(prefix + "frequency", expected.frequency, actual.frequency);
336 expectedChannels.add(channel.frequency);
340 actualChannels.add(channel.frequency);
392 channelSpecs[i].frequency = channels[i];
452 foundChannelsSet.add(bucketSettings.channels[i].frequency);
/frameworks/base/wifi/java/android/net/wifi/
H A DScanResult.java165 * The primary 20 MHz frequency (in MHz) of the channel over which the client is communicating
168 public int frequency; field in class:ScanResult
200 * If the AP use 40, 80 or 160 MHz, this is the center frequency (in MHz)
201 * if the AP use 80 + 80 MHz, this is the center frequency of the first segment (in MHz)
207 * if the AP use 80 + 80 MHz, this is the center frequency of the second segment (in MHz)
356 return ScanResult.is24GHz(frequency);
371 return ScanResult.is5GHz(frequency);
436 byte[] osuProviders, String caps, int level, int frequency, long tsf) {
450 this.frequency = frequency;
435 ScanResult(WifiSsid wifiSsid, String BSSID, long hessid, int anqpDomainId, byte[] osuProviders, String caps, int level, int frequency, long tsf) argument
461 ScanResult(WifiSsid wifiSsid, String BSSID, String caps, int level, int frequency, long tsf, int distCm, int distSdCm) argument
479 ScanResult(String Ssid, String BSSID, long hessid, int anqpDomainId, String caps, int level, int frequency, long tsf, int distCm, int distSdCm, int channelWidth, int centerFreq0, int centerFreq1, boolean is80211McRTTResponder) argument
504 ScanResult(WifiSsid wifiSsid, String Ssid, String BSSID, long hessid, int anqpDomainId, String caps, int level, int frequency, long tsf, int distCm, int distSdCm, int channelWidth, int centerFreq0, int centerFreq1, boolean is80211McRTTResponder) argument
[all...]
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/wificond/
H A DNativeScanResultTest.java59 scanResult.frequency = TEST_FREQUENCY;
73 assertEquals(scanResult.frequency, scanResultDeserialized.frequency);
H A DSingleScanSettingsTest.java50 channelSettings1.frequency = TEST_FREQUENCY_1;
52 channelSettings2.frequency = TEST_FREQUENCY_2;
/frameworks/rs/perf-test-scripts/
H A Dget-freq38 frequency=
62 # display current frequency
64 frequency=`getprop $CPU_DIR/$core/cpufreq/scaling_cur_freq`
66 echo " Current Frequency: $frequency (Hz)"
92 # collect and print current gpu frequency
98 echo "ERROR: unable to find current GPU frequency"
H A Dset-cpu-freq30 # use passed in percent frequency
76 # find target frequency based on frequency percentage
81 # find closest frequency
85 # set frequency
103 frequency=`getprop $DIR/$core/cpufreq/scaling_cur_freq`
104 if [ $frequency != ${selectedFreq[$core]} ]; then
105 echo "$core: $frequency != ${selectedFreq[$core]}"
/frameworks/av/media/libaaudio/examples/utils/
H A DSineGenerator.h28 void setup(double frequency, double frameRate) { argument
30 mPhaseIncrement = frequency * M_PI * 2 / frameRate;
/frameworks/base/libs/common_time/
H A Dclock_recovery.h42 void reset(bool position, bool frequency);
97 void reset_l(bool position, bool frequency);
111 // of the frequency correction.
H A Dclock_recovery.cpp108 void ClockRecoveryLoop::reset(bool position, bool frequency) { argument
110 reset_l(position, frequency);
307 void ClockRecoveryLoop::reset_l(bool position, bool frequency) {
315 if (frequency) {
/frameworks/base/core/java/android/hardware/hdmi/
H A DHdmiRecordSources.java578 * @param frequency
583 public static AnalogueServiceSource ofAnalogue(int broadcastType, int frequency, argument
590 if (frequency < 0 || frequency > 0xFFFF) {
591 Log.w(TAG, "Invalid frequency value[0x0000-0xFFFF]:" + frequency);
593 "Invalid frequency value[0x0000-0xFFFF]:" + frequency);
603 return new AnalogueServiceSource(broadcastType, frequency, broadcastSystem);
622 /** Used to specify the frequency use
630 AnalogueServiceSource(int broadcastType, int frequency, int broadcastSystem) argument
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DScanDetail.java43 String caps, int level, int frequency, long tsf,
48 caps, level, frequency, tsf);
64 public ScanDetail(WifiSsid wifiSsid, String bssid, String caps, int level, int frequency, argument
67 mScanResult = new ScanResult(wifiSsid, bssid, 0L, -1, null, caps, level, frequency, tsf);
42 ScanDetail(NetworkDetail networkDetail, WifiSsid wifiSsid, String bssid, String caps, int level, int frequency, long tsf, ScanResult.InformationElement[] informationElements, List<String> anqpLines) argument
/frameworks/minikin/include/minikin/
H A DLineBreaker.h154 void setHyphenationFrequency(HyphenationFrequency frequency) { argument
155 mHyphenationFrequency = frequency;
/frameworks/base/media/java/android/media/audiofx/
H A DEqualizer.java26 * An Equalizer is used to alter the frequency response of a particular music source or of the main
30 * precise control of the gain in each frequency band controlled by the equalizer.
61 * Band center frequency. Parameter ID for OnParameterChangeListener
65 * Band frequency range. Parameter ID for
70 * Band for a given frequency. Parameter ID for OnParameterChangeListener
169 * Gets the number of frequency bands supported by the Equalizer engine.
206 * @param band frequency band that will have the new gain. The numbering of the bands starts
228 * @param band frequency band whose gain is requested. The numbering of the bands starts
249 * Gets the center frequency of the given band.
250 * @param band frequency ban
298 getBand(int frequency) argument
[all...]

Completed in 3051 milliseconds

123