Lines Matching defs:frequency

84     private static final String FM_FREQUENCY = "frequency";
578 * @param frequency
580 public void powerUpAsync(float frequency) {
585 bundle.putFloat(FM_FREQUENCY, frequency);
591 private boolean powerUp(float frequency) {
612 if (!FmNative.powerUp(frequency)) {
623 private boolean playFrequency(float frequency) {
624 mCurrentStation = FmUtils.computeStation(frequency);
715 * @param frequency The frequency to tune
719 public void tuneStationAsync(float frequency) {
723 bundle.putFloat(FM_FREQUENCY, frequency);
729 private boolean tuneStation(float frequency) {
732 boolean bRet = FmNative.tune(frequency);
735 mCurrentStation = FmUtils.computeStation(frequency);
751 if (powerUp(frequency)) {
752 tune = playFrequency(frequency);
759 * Seek station according frequency and direction
761 * @param frequency start frequency(100KHZ, 87.5)
764 * @return the frequency after seek
766 public void seekStationAsync(float frequency, boolean isUp) {
770 bundle.putFloat(FM_FREQUENCY, frequency);
777 private float seekStation(float frequency, boolean isUp) {
784 float fRet = FmNative.seek(frequency, isUp);
916 * Get AF frequency
918 * @return AF frequency
931 int frequency = FmNative.activeAf();
932 return frequency;
1000 * @param iCurrentStation current station frequency
1017 * Get FM service current station frequency
1019 * @return Current station frequency
1026 * Set FM service station frequency
1574 // if the new frequency is not equal to current
1575 // frequency.
1587 // Sleep 500ms to reduce inquiry frequency
2301 // delete station if db frequency is not in searched list
2547 * @param bundle power up frequency
2670 private boolean firstPlaying(float frequency) {
2676 float seekStation = FmNative.seek(frequency, false);