Home
last modified time | relevance | path

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

/hardware/interfaces/broadcastradio/2.0/default/
DTunerSession.cpp186 auto stepTo = utils::getId(mCurrentProgram, IdentifierType::AMFM_FREQUENCY); in step() local
194 stepTo += range->spacing; in step()
196 stepTo -= range->spacing; in step()
198 if (stepTo > range->upperBound) stepTo = range->lowerBound; in step()
199 if (stepTo < range->lowerBound) stepTo = range->upperBound; in step()
202 auto task = [this, stepTo]() { in step()
203 LOG(VERBOSE) << "executing step to " << stepTo; in step()
207 tuneInternalLocked(utils::make_selector_amfm(stepTo)); in step()