Lines Matching refs:sel
67 void TunerSession::tuneInternalLocked(const ProgramSelector& sel) { in tuneInternalLocked() argument
68 LOG(VERBOSE) << "tune (internal) to " << toString(sel); in tuneInternalLocked()
72 if (virtualRadio().getProgram(sel, virtualProgram)) { in tuneInternalLocked()
76 mCurrentProgram = sel; in tuneInternalLocked()
77 programInfo = makeDummyProgramInfo(sel); in tuneInternalLocked()
92 Return<Result> TunerSession::tune(const ProgramSelector& sel) { in tune() argument
93 LOG(DEBUG) << "tune to " << toString(sel); in tune()
98 if (!utils::isSupported(module().mProperties, sel)) { in tune()
99 LOG(WARNING) << "selector not supported: " << toString(sel); in tune()
103 if (!utils::isValid(sel)) { in tune()
104 LOG(ERROR) << "selector is not valid: " << toString(sel); in tune()
111 auto task = [this, sel]() { in tune()
113 tuneInternalLocked(sel); in tune()