Searched refs:seekStation (Results 1 – 2 of 2) sorted by relevance
777 private float seekStation(float frequency, boolean isUp) { in seekStation() method in FmService2424 float seekStation = seekStation(bundle.getFloat(FM_FREQUENCY), in handleMessage() local2427 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() local2677 int station = FmUtils.computeStation(seekStation); in firstPlaying()2679 isSeekTune = FmNative.tune(seekStation); in firstPlaying()2681 playFrequency(seekStation); in firstPlaying()[all …]
193 seekStation(mCurrentStation, false); // false: previous station197 seekStation(mCurrentStation, true); // true: previous station981 private void seekStation(final int station, boolean direction) { in seekStation() method in FmMainActivity