Searched refs:directionDown (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/services/core/java/com/android/server/broadcastradio/hal1/ |
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()
|
/frameworks/base/core/java/android/hardware/radio/ |
D | ITuner.aidl | 47 void step(boolean directionDown, boolean skipSubChannel); in step() argument 52 void scan(boolean directionDown, boolean skipSubChannel); in scan() argument
|
/frameworks/base/services/core/java/com/android/server/broadcastradio/hal2/ |
D | TunerSession.java | 115 public void step(boolean directionDown, boolean skipSubChannel) throws RemoteException { in step() argument 118 int halResult = mHwSession.step(!directionDown); in step() 124 public void scan(boolean directionDown, boolean skipSubChannel) throws RemoteException { in scan() argument 127 int halResult = mHwSession.scan(!directionDown, skipSubChannel); in scan()
|
/frameworks/base/services/core/jni/BroadcastRadio/ |
D | Tuner.cpp | 263 bool directionDown, bool skipSubChannel) { in nativeStep() argument 268 auto dir = convert::DirectionToHal(directionDown); in nativeStep() 273 bool directionDown, bool skipSubChannel) { in nativeScan() argument 278 auto dir = convert::DirectionToHal(directionDown); in nativeScan()
|
D | convert.h | 51 V1_0::Direction DirectionToHal(bool directionDown);
|
D | convert.cpp | 497 Direction DirectionToHal(bool directionDown) { in DirectionToHal() argument 498 return directionDown ? Direction::DOWN : Direction::UP; in DirectionToHal()
|