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

/frameworks/base/core/java/android/provider/
H A DUserDictionary.java30 * frequency information and locale information.
72 * The frequency column. A value between 1 and 255. Higher values imply higher frequency.
75 public static final String FREQUENCY = "frequency";
97 * Sort by descending order of frequency.
101 /** Adds a word to the dictionary, with the given frequency and the specified
110 int frequency, int localeType) {
117 if (frequency < 0) frequency = 0;
118 if (frequency > 25
109 addWord(Context context, String word, int frequency, int localeType) argument
[all...]
/frameworks/base/wifi/java/android/net/wifi/
H A DScanResult.java44 * The frequency in MHz of the channel over which the client is communicating
47 public int frequency; field in class:ScanResult
56 public ScanResult(String SSID, String BSSID, String caps, int level, int frequency) { argument
61 this.frequency = frequency;
78 append(", frequency: ").
79 append(frequency);
95 dest.writeInt(frequency);
H A DWifiStateMachine.java185 /* Tracks current frequency mode */
343 /* Set the frequency band */
1018 * Set the operational frequency band
1032 * Returns the operational frequency band
1226 * Set the frequency band from the system setting value, if any.
1299 // bssid | frequency | level | flags | ssid
1300 int frequency;
1303 frequency = Integer.parseInt(result[1]);
1310 frequency = 0;
1349 scanResult.frequency
[all...]
/frameworks/base/include/media/
H A DToneGenerator.h288 WaveGenerator(unsigned short samplingRate, unsigned short 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/base/media/libmedia/
H A DToneGenerator.cpp1348 unsigned int frequency = mpToneDesc->segments[segmentIdx].waveFreq[freqIdx]; local
1349 while (frequency) {
1350 // Instantiate a wave generator if ot already done for this frequency
1351 if (mWaveGens.indexOfKey(frequency) == NAME_NOT_FOUND) {
1354 frequency,
1359 mWaveGens.add(frequency, lpWaveGen);
1361 frequency = mpNewToneDesc->segments[segmentIdx].waveFreq[++freqIdx];
1479 // frequency: Frequency of the sine wave to generate in Hz
1487 unsigned short frequency, float volume) {
1489 double F_div_Fs; // frequency / samplingRat
1486 WaveGenerator(unsigned short samplingRate, unsigned short frequency, float volume) argument
[all...]
/frameworks/base/services/java/com/android/server/
H A DWifiService.java804 * Set the operational frequency band
815 Slog.i(TAG, "WifiService trying to set frequency band to " + band +
822 * Get the operational frequency band
1161 r.frequency,

Completed in 141 milliseconds