Searched refs:skipSubChannel (Results 1 - 6 of 6) sorted by relevance
/frameworks/base/core/java/android/hardware/radio/ |
H A D | ITuner.aidl | 47 void step(boolean directionDown, boolean skipSubChannel); 52 void scan(boolean directionDown, boolean skipSubChannel);
|
H A D | RadioTuner.java | 126 * @param skipSubChannel indicates to skip sub channels when the configuration currently 139 public abstract int step(int direction, boolean skipSubChannel); argument 147 * @param skipSubChannel indicates to skip sub channels when the configuration currently 160 public abstract int scan(int direction, boolean skipSubChannel); argument
|
H A D | TunerAdapter.java | 127 public int step(int direction, boolean skipSubChannel) { argument 129 mTuner.step(direction == RadioTuner.DIRECTION_DOWN, skipSubChannel); 141 public int scan(int direction, boolean skipSubChannel) { argument 143 mTuner.scan(direction == RadioTuner.DIRECTION_DOWN, skipSubChannel);
|
/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); argument 84 private native void nativeScan(long nativeContext, boolean directionDown, boolean skipSubChannel); argument 173 public void step(boolean directionDown, boolean skipSubChannel) { argument 177 nativeStep(mNativeContext, directionDown, skipSubChannel); 182 public void scan(boolean directionDown, boolean skipSubChannel) { argument 186 nativeScan(mNativeContext, directionDown, skipSubChannel);
|
/frameworks/base/services/core/java/com/android/server/broadcastradio/hal2/ |
H A D | TunerSession.java | 115 public void step(boolean directionDown, boolean skipSubChannel) throws RemoteException { argument 124 public void scan(boolean directionDown, boolean skipSubChannel) throws RemoteException { argument 127 int halResult = mHwSession.scan(!directionDown, skipSubChannel);
|
/frameworks/base/services/core/jni/BroadcastRadio/ |
H A D | Tuner.cpp | 263 bool directionDown, bool skipSubChannel) { 269 convert::ThrowIfFailed(env, halTuner->step(dir, skipSubChannel)); 273 bool directionDown, bool skipSubChannel) { 279 convert::ThrowIfFailed(env, halTuner->scan(dir, skipSubChannel)); 262 nativeStep(JNIEnv *env, jobject obj, jlong nativeContext, bool directionDown, bool skipSubChannel) argument 272 nativeScan(JNIEnv *env, jobject obj, jlong nativeContext, bool directionDown, bool skipSubChannel) argument
|
Completed in 13 milliseconds