Home
last modified time | relevance | path

Searched refs:directionDown (Results 1 – 7 of 7) sorted by relevance

/aosp14/frameworks/base/services/core/java/com/android/server/broadcastradio/hal1/
H A DTuner.java85 … private native void nativeStep(long nativeContext, boolean directionDown, boolean skipSubChannel); in nativeStep() argument
86 … private native void nativeScan(long nativeContext, boolean directionDown, boolean skipSubChannel); in nativeScan() argument
179 public void step(boolean directionDown, boolean skipSubChannel) { in step() argument
187 nativeStep(mNativeContext, directionDown, skipSubChannel); in step()
192 public void seek(boolean directionDown, boolean skipSubChannel) { in seek() argument
200 nativeScan(mNativeContext, directionDown, skipSubChannel); in seek()
/aosp14/frameworks/base/services/core/java/com/android/server/broadcastradio/aidl/
H A DTunerSession.java167 public void step(boolean directionDown, boolean skipSubChannel) throws RemoteException { in step() argument
169 directionDown ? "down" : "up", skipSubChannel ? "yes" : "no"); in step()
177 mService.step(!directionDown); in step()
185 public void seek(boolean directionDown, boolean skipSubChannel) throws RemoteException { in seek() argument
187 directionDown ? "down" : "up", skipSubChannel ? "yes" : "no"); in seek()
195 mService.seek(!directionDown, skipSubChannel); in seek()
/aosp14/frameworks/base/services/core/java/com/android/server/broadcastradio/hal2/
H A DTunerSession.java162 public void step(boolean directionDown, boolean skipSubChannel) throws RemoteException { in step() argument
164 directionDown ? "down" : "up", skipSubChannel ? "yes" : "no"); in step()
171 int halResult = mHwSession.step(!directionDown); 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()
/aosp14/frameworks/base/core/java/android/hardware/radio/
H A DITuner.aidl47 void step(boolean directionDown, boolean skipSubChannel); in step() argument
52 void seek(boolean directionDown, boolean skipSubChannel); in seek() argument
/aosp14/frameworks/base/services/core/jni/BroadcastRadio/
H A DTuner.cpp264 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()
H A Dconvert.h51 V1_0::Direction DirectionToHal(bool directionDown);
H A Dconvert.cpp497 Direction DirectionToHal(bool directionDown) { in DirectionToHal() argument
498 return directionDown ? Direction::DOWN : Direction::UP; in DirectionToHal()