Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/broadcastradio/hal1/
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()
/frameworks/base/core/java/android/hardware/radio/
DITuner.aidl47 void step(boolean directionDown, boolean skipSubChannel); in step() argument
52 void scan(boolean directionDown, boolean skipSubChannel); in scan() argument
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()
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
/frameworks/base/services/core/java/com/android/server/broadcastradio/hal2/
DTunerSession.java135 public void step(boolean directionDown, boolean skipSubChannel) throws RemoteException { in step() argument
144 public void scan(boolean directionDown, boolean skipSubChannel) throws RemoteException { in scan() argument
147 int halResult = mHwSession.scan(!directionDown, skipSubChannel); in scan()
/frameworks/base/services/core/jni/BroadcastRadio/
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()