/aosp12/frameworks/base/services/core/java/com/android/server/broadcastradio/hal1/ |
H A D | Tuner.java | 83 … 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 D | Tuner.cpp | 135 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 D | Tuner.h | 39 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 D | ITuner.aidl | 47 void step(boolean directionDown, boolean skipSubChannel); in step() argument 52 void scan(boolean directionDown, boolean skipSubChannel); in scan() argument
|
H A D | TunerAdapter.java | 127 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 D | RadioTuner.java | 139 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 D | ITuner.hal | 52 * @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 D | Tuner.h | 42 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 D | Tuner.cpp | 176 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 D | TunerSession.java | 139 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 D | Tuner.cpp | 264 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 D | TunerSession.h | 40 virtual Return<Result> scan(bool directionUp, bool skipSubChannel) override;
|
H A D | TunerSession.cpp | 120 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 D | ITunerSession.hal | 49 * 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);
|