Searched refs:frequency (Results 1 - 14 of 14) sorted by last modified time

/frameworks/wilhelm/include/OMXAL/
H A DOpenMAXAL.h2047 XAmilliHertz frequency,
2574 XAmilliHertz frequency
/frameworks/wilhelm/include/SLES/
H A DOpenSLES.h690 SLmilliHertz frequency
1263 SLmilliHertz frequency,
/frameworks/wilhelm/src/itf/
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);
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;
/frameworks/base/wifi/java/android/net/wifi/
H A DScanResult.java48 * The frequency in MHz of the channel over which the client is communicating
51 public int frequency; field in class:ScanResult
60 public ScanResult(WifiSsid wifiSsid, String BSSID, String caps, int level, int frequency, argument
67 this.frequency = frequency;
80 frequency = source.frequency;
98 append(", frequency: ").
99 append(frequency).
122 dest.writeInt(frequency);
[all...]
H A DWifiStateMachine.java209 /* Tracks current frequency mode */
352 /* Set the frequency band */
1082 * Set the operational frequency band
1096 * Returns the operational frequency band
1342 * Set the frequency band from the system setting value, if any.
1505 scanResult.frequency = freq;
2730 /* set frequency band of operation */
2801 if (DBG) log("set frequency band " + band);
2804 //Fetch the latest scan results when frequency band is set
2807 loge("Failed to set frequency ban
[all...]
/frameworks/base/services/common_time/
H A Dclock_recovery.cpp107 void ClockRecoveryLoop::reset(bool position, bool frequency) { argument
109 reset_l(position, frequency);
306 void ClockRecoveryLoop::reset_l(bool position, bool frequency) {
314 if (frequency) {
H A Dclock_recovery.h41 void reset(bool position, bool frequency);
96 void reset_l(bool position, bool frequency);
110 // of the frequency correction.
/frameworks/base/services/java/com/android/server/
H A DWifiService.java891 * Set the operational frequency band
902 Slog.i(TAG, "WifiService trying to set frequency band to " + band +
909 * Get the operational frequency band
1247 r.frequency,
/frameworks/base/media/java/android/media/audiofx/
H A DEqualizer.java33 * An Equalizer is used to alter the frequency response of a particular music source or of the main
37 * precise control of the gain in each frequency band controlled by the equalizer.
68 * Band center frequency. Parameter ID for OnParameterChangeListener
72 * Band frequency range. Parameter ID for
77 * Band for a given frequency. Parameter ID for OnParameterChangeListener
176 * Gets the number of frequency bands supported by the Equalizer engine.
213 * @param band frequency band that will have the new gain. The numbering of the bands starts
235 * @param band frequency band whose gain is requested. The numbering of the bands starts
256 * Gets the center frequency of the given band.
257 * @param band frequency ban
305 getBand(int frequency) argument
[all...]
/frameworks/av/services/audioflinger/
H A DAndroid.mk63 # uncomment to display CPU load adjusted for CPU frequency
/frameworks/base/core/java/android/provider/
H A DUserDictionary.java30 * frequency information and locale information.
75 * The frequency column. A value between 1 and 255. Higher values imply higher frequency.
78 public static final String FREQUENCY = "frequency";
112 * Sort by descending order of frequency.
116 /** Adds a word to the dictionary, with the given frequency and the specified
130 int frequency, int localeType) {
144 addWord(context, word, frequency, null, locale);
147 /** Adds a word to the dictionary, with the given frequency and the specified
159 int frequency, Strin
129 addWord(Context context, String word, int frequency, int localeType) argument
158 addWord(Context context, String word, int frequency, String shortcut, Locale locale) argument
[all...]
/frameworks/av/include/media/
H A DToneGenerator.h291 WaveGenerator(unsigned short samplingRate, unsigned short frequency,
/frameworks/av/media/libmedia/
H A DToneGenerator.cpp1344 unsigned int frequency = mpToneDesc->segments[segmentIdx].waveFreq[freqIdx]; local
1345 while (frequency) {
1346 // Instantiate a wave generator if ot already done for this frequency
1347 if (mWaveGens.indexOfKey(frequency) == NAME_NOT_FOUND) {
1350 frequency,
1352 mWaveGens.add(frequency, lpWaveGen);
1354 frequency = mpNewToneDesc->segments[segmentIdx].waveFreq[++freqIdx];
1466 // frequency: Frequency of the sine wave to generate in Hz
1474 unsigned short frequency, float volume) {
1476 double F_div_Fs; // frequency / samplingRat
1473 WaveGenerator(unsigned short samplingRate, unsigned short frequency, float volume) argument
[all...]

Completed in 2518 milliseconds