Searched defs:skipSubChannel (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/hardware/radio/
H A DTunerAdapter.java127 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);
H A DRadioTuner.java126 * @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
/frameworks/base/services/core/java/com/android/server/broadcastradio/hal2/
H A DTunerSession.java115 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/java/com/android/server/broadcastradio/hal1/
H A DTuner.java83 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/jni/BroadcastRadio/
H A DTuner.cpp263 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 155 milliseconds