Home
last modified time | relevance | path

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

/hardware/interfaces/broadcastradio/1.0/default/
DTuner.h39 Return<Result> scan(Direction direction, bool skipSubChannel) override;
40 Return<Result> step(Direction direction, bool skipSubChannel) override;
DTuner.cpp135 Return<Result> Tuner::scan(Direction direction, bool skipSubChannel) { in scan() argument
139 int rc = mHalTuner->scan(mHalTuner, static_cast<radio_direction_t>(direction), skipSubChannel); in scan()
143 Return<Result> Tuner::step(Direction direction, bool skipSubChannel) { in step() argument
147 int rc = mHalTuner->step(mHalTuner, static_cast<radio_direction_t>(direction), skipSubChannel); in step()
/hardware/interfaces/broadcastradio/1.1/default/
DTuner.h42 virtual Return<Result> scan(V1_0::Direction direction, bool skipSubChannel) override;
43 virtual Return<Result> step(V1_0::Direction direction, bool skipSubChannel) override;
DTuner.cpp176 Return<Result> Tuner::scan(Direction direction, bool skipSubChannel __unused) { in scan()
231 Return<Result> Tuner::step(Direction direction, bool skipSubChannel) { in step() argument
236 ALOGW_IF(!skipSubChannel, "can't step to next frequency without ignoring subChannel"); in step()
/hardware/interfaces/broadcastradio/1.0/
DITuner.hal52 * @param skipSubChannel valid for HD radio or digital radios only:
58 scan(Direction direction, bool skipSubChannel) generates(Result result);
68 * @param skipSubChannel valid for HD radio or digital radios only:
74 step(Direction direction, bool skipSubChannel) generates(Result result);
/hardware/interfaces/broadcastradio/aidl/default/
DBroadcastRadio.cpp344 bool skipSubChannel, VirtualProgram* nextProgram) const { in findNextLocked() argument
364 if (skipSubChannel) { in findNextLocked()
404 } else if (skipSubChannel) { in findNextLocked()
459 ScopedAStatus BroadcastRadio::seek(bool directionUp, bool skipSubChannel) { in seek() argument
461 << (skipSubChannel ? "yes" : "no") << "..."; in seek()
484 bool foundNext = findNextLocked(mCurrentProgram, directionUp, skipSubChannel, &nextProgram); in seek()
898 bool skipSubChannel; in cmdSeek() local
899 if (!utils::parseArgBool(skipSubChannelIn, &skipSubChannel)) { in cmdSeek()
905 auto seekResult = seek(seekDirectionUp, skipSubChannel); in cmdSeek()
DBroadcastRadio.h52 ndk::ScopedAStatus seek(bool directionUp, bool skipSubChannel) EXCLUDES(mMutex) override;
97 bool findNextLocked(const ProgramSelector& current, bool directionUp, bool skipSubChannel,
/hardware/interfaces/broadcastradio/aidl/aidl_api/android.hardware.broadcastradio/2/android/hardware/broadcastradio/
DIBroadcastRadio.aidl43 void seek(in boolean directionUp, in boolean skipSubChannel); in seek() argument
/hardware/interfaces/broadcastradio/aidl/android/hardware/broadcastradio/
DIBroadcastRadio.aidl167 void seek(in boolean directionUp, in boolean skipSubChannel); in seek() argument
/hardware/interfaces/broadcastradio/aidl/aidl_api/android.hardware.broadcastradio/1/android/hardware/broadcastradio/
DIBroadcastRadio.aidl43 void seek(in boolean directionUp, in boolean skipSubChannel); in seek() argument
/hardware/interfaces/broadcastradio/aidl/aidl_api/android.hardware.broadcastradio/current/android/hardware/broadcastradio/
DIBroadcastRadio.aidl43 void seek(in boolean directionUp, in boolean skipSubChannel); in seek() argument
/hardware/interfaces/broadcastradio/2.0/default/
DTunerSession.h40 virtual Return<Result> scan(bool directionUp, bool skipSubChannel) override;
DTunerSession.cpp120 Return<Result> TunerSession::scan(bool directionUp, bool skipSubChannel) { in scan() argument
121 LOG(DEBUG) << "seek up=" << directionUp << " skipSubChannel=" << skipSubChannel; in scan()
/hardware/interfaces/broadcastradio/2.0/
DITunerSession.hal49 * The skipSubChannel parameter is used to skip digital radio subchannels:
59 * @param skipSubChannel Don't tune to subchannels.
62 scan(bool directionUp, bool skipSubChannel) generates (Result result);