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 | 135 public void step(boolean directionDown, boolean skipSubChannel) throws RemoteException { in step() argument 138 int halResult = mHwSession.step(!directionDown); in step() 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/ |
D | Tuner.cpp | 264 bool directionDown, bool skipSubChannel) { in nativeStep() argument 269 auto dir = convert::DirectionToHal(directionDown); in nativeStep() 274 bool directionDown, bool skipSubChannel) { in nativeScan() argument 279 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()
|