Home
last modified time | relevance | path

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

/aosp12/frameworks/base/services/core/java/com/android/server/broadcastradio/hal1/
H A DTuner.java83 … private native void nativeStep(long nativeContext, boolean directionDown, boolean skipSubChannel); in nativeStep() argument
84 … private native void nativeScan(long nativeContext, boolean directionDown, boolean skipSubChannel); in nativeScan() argument
173 public void step(boolean directionDown, boolean skipSubChannel) { in step() argument
177 nativeStep(mNativeContext, directionDown, skipSubChannel); in step()
182 public void scan(boolean directionDown, boolean skipSubChannel) { in scan() argument
186 nativeScan(mNativeContext, directionDown, skipSubChannel); in scan()
/aosp12/hardware/interfaces/broadcastradio/1.0/default/
H A 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()
H A DTuner.h39 Return<Result> scan(Direction direction, bool skipSubChannel) override;
40 Return<Result> step(Direction direction, bool skipSubChannel) override;
/aosp12/frameworks/base/core/java/android/hardware/radio/
H A DITuner.aidl47 void step(boolean directionDown, boolean skipSubChannel); in step() argument
52 void scan(boolean directionDown, boolean skipSubChannel); in scan() argument
H A DTunerAdapter.java127 public int step(int direction, boolean skipSubChannel) { in step() argument
129 mTuner.step(direction == RadioTuner.DIRECTION_DOWN, skipSubChannel); in step()
141 public int scan(int direction, boolean skipSubChannel) { in scan() argument
143 mTuner.scan(direction == RadioTuner.DIRECTION_DOWN, skipSubChannel); in scan()
H A DRadioTuner.java139 public abstract int step(int direction, boolean skipSubChannel); in step() argument
160 public abstract int scan(int direction, boolean skipSubChannel); in scan() argument
/aosp12/hardware/interfaces/broadcastradio/1.0/
H A 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);
/aosp12/hardware/interfaces/broadcastradio/1.1/default/
H A 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;
H A 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()
/aosp12/frameworks/base/services/core/java/com/android/server/broadcastradio/hal2/
H A DTunerSession.java139 public void step(boolean directionDown, boolean skipSubChannel) throws RemoteException { in step() argument
148 public void scan(boolean directionDown, boolean skipSubChannel) throws RemoteException { in scan() argument
151 int halResult = mHwSession.scan(!directionDown, skipSubChannel); in scan()
/aosp12/frameworks/base/services/core/jni/BroadcastRadio/
H A DTuner.cpp264 bool directionDown, bool skipSubChannel) { in nativeStep() argument
270 convert::ThrowIfFailed(env, halTuner->step(dir, skipSubChannel)); in nativeStep()
274 bool directionDown, bool skipSubChannel) { in nativeScan() argument
280 convert::ThrowIfFailed(env, halTuner->scan(dir, skipSubChannel)); in nativeScan()
/aosp12/hardware/interfaces/broadcastradio/2.0/default/
H A DTunerSession.h40 virtual Return<Result> scan(bool directionUp, bool skipSubChannel) override;
H A DTunerSession.cpp120 Return<Result> TunerSession::scan(bool directionUp, bool skipSubChannel) { in scan() argument
121 LOG(DEBUG) << "seek up=" << directionUp << " skipSubChannel=" << skipSubChannel; in scan()
/aosp12/hardware/interfaces/broadcastradio/2.0/
H A 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);