/frameworks/base/services/core/java/com/android/server/broadcastradio/hal1/ |
D | Tuner.java | 84 … private native void nativeStep(long nativeContext, boolean directionDown, boolean skipSubChannel); in nativeStep() argument 85 … private native void nativeScan(long nativeContext, boolean directionDown, boolean skipSubChannel); in nativeScan() argument 178 public void step(boolean directionDown, boolean skipSubChannel) { in step() argument 186 nativeStep(mNativeContext, directionDown, skipSubChannel); in step() 191 public void seek(boolean directionDown, boolean skipSubChannel) { in seek() argument 199 nativeScan(mNativeContext, directionDown, skipSubChannel); in seek()
|
/frameworks/base/core/java/android/hardware/radio/ |
D | ITuner.aidl | 47 void step(boolean directionDown, boolean skipSubChannel); in step() argument 52 void seek(boolean directionDown, boolean skipSubChannel); in seek() argument
|
D | TunerAdapter.java | 141 public int step(int direction, boolean skipSubChannel) { in step() argument 144 skipSubChannel); in step() 156 public int scan(int direction, boolean skipSubChannel) { in scan() argument 159 skipSubChannel); in scan() 171 public int seek(int direction, boolean skipSubChannel) { in seek() argument 174 skipSubChannel); in seek()
|
D | RadioTuner.java | 168 public abstract int step(int direction, boolean skipSubChannel); in step() argument 198 public abstract int scan(int direction, boolean skipSubChannel); in scan() argument 226 public int seek(int direction, boolean skipSubChannel) { in seek() argument
|
/frameworks/base/services/core/java/com/android/server/broadcastradio/aidl/ |
D | TunerSession.java | 169 public void step(boolean directionDown, boolean skipSubChannel) throws RemoteException { in step() argument 171 directionDown ? "down" : "up", skipSubChannel ? "yes" : "no"); in step() 187 public void seek(boolean directionDown, boolean skipSubChannel) throws RemoteException { in seek() argument 189 directionDown ? "down" : "up", skipSubChannel ? "yes" : "no"); in seek() 197 mService.seek(!directionDown, skipSubChannel); in seek()
|
/frameworks/base/services/core/java/com/android/server/broadcastradio/hal2/ |
D | TunerSession.java | 162 public void step(boolean directionDown, boolean skipSubChannel) throws RemoteException { in step() argument 164 directionDown ? "down" : "up", skipSubChannel ? "yes" : "no"); in step() 177 public void seek(boolean directionDown, boolean skipSubChannel) throws RemoteException { in seek() argument 179 directionDown ? "down" : "up", skipSubChannel ? "yes" : "no"); in seek() 186 int halResult = mHwSession.scan(!directionDown, skipSubChannel); in seek()
|
/frameworks/base/core/tests/BroadcastRadioTests/src/android/hardware/radio/ |
D | DefaultRadioTunerTest.java | 59 public int step(int direction, boolean skipSubChannel) { 64 public int scan(int direction, boolean skipSubChannel) {
|
/frameworks/base/services/core/jni/BroadcastRadio/ |
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()
|