Home
last modified time | relevance | path

Searched refs:seekStation (Results 1 – 2 of 2) sorted by relevance

/packages/apps/FMRadio/src/com/android/fmradio/
DFmService.java777 private float seekStation(float frequency, boolean isUp) { in seekStation() method in FmService
2424 float seekStation = seekStation(bundle.getFloat(FM_FREQUENCY), in handleMessage() local
2427 int station = FmUtils.computeStation(seekStation); in handleMessage()
2429 isStationTunningSuccessed = tuneStation(seekStation); in handleMessage()
2433 seekStation = FmUtils.computeFrequency(mCurrentStation); in handleMessage()
2439 bundle.putFloat(FmListener.KEY_TUNE_TO_STATION, seekStation); in handleMessage()
2676 float seekStation = FmNative.seek(frequency, false); in firstPlaying() local
2677 int station = FmUtils.computeStation(seekStation); in firstPlaying()
2679 isSeekTune = FmNative.tune(seekStation); in firstPlaying()
2681 playFrequency(seekStation); in firstPlaying()
[all …]
DFmMainActivity.java193 seekStation(mCurrentStation, false); // false: previous station
197 seekStation(mCurrentStation, true); // true: previous station
981 private void seekStation(final int station, boolean direction) { in seekStation() method in FmMainActivity