Lines Matching refs:stepTo
522 int64_t stepTo; in step() local
524 stepTo = utils::getId(mCurrentProgram, IdentifierType::AMFM_FREQUENCY_KHZ); in step()
526 stepTo = utils::getHdFrequency(mCurrentProgram); in step()
540 stepTo += mCurrentAmFmBandRange->spacing; in step()
542 stepTo -= mCurrentAmFmBandRange->spacing; in step()
544 if (stepTo > mCurrentAmFmBandRange->upperBound) { in step()
545 stepTo = mCurrentAmFmBandRange->lowerBound; in step()
547 if (stepTo < mCurrentAmFmBandRange->lowerBound) { in step()
548 stepTo = mCurrentAmFmBandRange->upperBound; in step()
553 auto task = [this, stepTo, callback]() { in step()
557 programInfo = tuneInternalLocked(utils::makeSelectorAmfm(stepTo)); in step()