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

12

/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 DScanDetailUtil.java37 scanResult.informationElements, scanResult.anqpLines, scanResult.frequency);
/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.c55 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.c289 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.java137 channelFreqs[i] = channels[i].frequency;
254 assertEquals(prefix + "results[" + j + "].frequency",
255 expectedResult.frequency, actualResult.frequency);
328 expectedChannels.add(channel.frequency);
332 actualChannels.add(channel.frequency);
388 channelSpecs[i].frequency = channels[i];
448 foundChannelsSet.add(bucketSettings.channels[i].frequency);
/frameworks/base/wifi/java/android/net/wifi/
H A DScanResult.java77 * The primary 20 MHz frequency (in MHz) of the channel over which the client is communicating
80 public int frequency; field in class:ScanResult
112 * If the AP use 40, 80 or 160 MHz, this is the center frequency (in MHz)
113 * if the AP use 80 + 80 MHz, this is the center frequency of the first segment (in MHz)
119 * if the AP use 80 + 80 MHz, this is the center frequency of the second segment (in MHz)
274 return ScanResult.is24GHz(frequency);
289 return ScanResult.is5GHz(frequency);
354 byte[] osuProviders, String caps, int level, int frequency, long tsf) {
368 this.frequency = frequency;
353 ScanResult(WifiSsid wifiSsid, String BSSID, long hessid, int anqpDomainId, byte[] osuProviders, String caps, int level, int frequency, long tsf) argument
379 ScanResult(WifiSsid wifiSsid, String BSSID, String caps, int level, int frequency, long tsf, int distCm, int distSdCm) argument
397 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
422 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...]
H A DRttManager.java352 * communicating with the AP.Same as ScanResult.frequency
355 public int frequency; field in class:RttManager.RttParams
365 * If the AP use 40, 80 or 160 MHz, this is the center frequency
366 * if the AP use 80 + 80 MHz, this is the center frequency of the first segment
374 * if the AP use 80 + 80 MHz, this is the center frequency of the second segment
508 dest.writeInt(params.frequency);
539 params[i].frequency = in.readInt();
1016 * The primary 20 MHz frequency (in MHz) of the channel where responder is enabled.
1017 * @see ScanResult#frequency
1019 public int frequency; field in class:RttManager.ResponderConfig
[all...]
H A DWifiScanner.java99 * integer with frequency in MHz i.e. channel 1 is 2412
116 * channel frequency in MHz; for example channel 1 is specified as 2412
118 public int frequency; field in class:WifiScanner.ChannelSpec
134 public ChannelSpec(int frequency) { argument
135 this.frequency = frequency;
229 dest.writeInt(channels[i].frequency);
255 int frequency = in.readInt();
256 ChannelSpec spec = new ChannelSpec(frequency);
881 /** channel frequency (i
[all...]
/frameworks/base/libs/common_time/
H A Dclock_recovery.h41 void reset(bool position, bool frequency);
96 void reset_l(bool position, bool frequency);
110 // 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.java46 String caps, int level, int frequency, long tsf,
51 caps, level, frequency, tsf);
68 public ScanDetail(WifiSsid wifiSsid, String bssid, String caps, int level, int frequency, argument
71 mScanResult = new ScanResult(wifiSsid, bssid, 0L, -1, null, caps, level, frequency, tsf);
107 mScanResult.frequency = freq;
45 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.h152 void setHyphenationFrequency(HyphenationFrequency frequency) { argument
153 mHyphenationFrequency = frequency;
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/util/
H A DScanDetailUtilTest.java108 assertEquals("ScanResult frequency", input.frequency,
109 output.getScanResult().frequency);
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
H A DAccessPoint.java524 if (result.frequency >= LOWER_FREQ_5GHZ
525 && result.frequency <= HIGHER_FREQ_5GHZ) {
529 } else if (result.frequency >= LOWER_FREQ_24GHZ
530 && result.frequency <= HIGHER_FREQ_24GHZ) {
537 if (result.frequency >= LOWER_FREQ_5GHZ
538 && result.frequency <= HIGHER_FREQ_5GHZ) {
546 scans5GHz.append("=").append(result.frequency);
551 } else if (result.frequency >= LOWER_FREQ_24GHZ
552 && result.frequency <= HIGHER_FREQ_24GHZ) {
560 scans24GHz.append("=").append(result.frequency);
[all...]
/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...]
/frameworks/rs/java/tests/RsBLAS_Benchmark/src/com/example/android/rs/blasbenchmark/
H A DBNNMTest.java88 private void addByteNoise(byte[] data, int count, float frequency, int maxDelta) { argument
91 if (rand.nextFloat() < frequency) {
120 // and we can't get good results if the frequency of small differences is
124 // results at a 3% specified frequency, the test should fail:
/frameworks/av/include/media/
H A DToneGenerator.h302 WaveGenerator(unsigned short samplingRate, unsigned short frequency,
/frameworks/av/media/libmedia/
H A DToneGenerator.cpp1418 unsigned int frequency = mpToneDesc->segments[segmentIdx].waveFreq[freqIdx]; local
1419 while (frequency) {
1420 // Instantiate a wave generator if ot already done for this frequency
1421 if (mWaveGens.indexOfKey(frequency) == NAME_NOT_FOUND) {
1424 frequency,
1426 mWaveGens.add(frequency, lpWaveGen);
1428 frequency = mpNewToneDesc->segments[segmentIdx].waveFreq[++freqIdx];
1540 // frequency: Frequency of the sine wave to generate in Hz
1548 unsigned short frequency, float volume) {
1550 double F_div_Fs; // frequency / samplingRat
1547 WaveGenerator(unsigned short samplingRate, unsigned short frequency, float volume) argument
[all...]

Completed in 3596 milliseconds

12