Searched refs:skipSubChannel (Results 1 – 8 of 8) sorted by relevance
/frameworks/av/radio/ |
D | IRadio.cpp | 123 virtual status_t scan(radio_direction_t direction, bool skipSubChannel) in scan() argument 128 data.writeInt32(skipSubChannel ? 1 : 0); in scan() 136 virtual status_t step(radio_direction_t direction, bool skipSubChannel) in step() argument 141 data.writeInt32(skipSubChannel ? 1 : 0); in step() 274 bool skipSubChannel = data.readInt32() == 1; in onTransact() local 275 status_t status = scan(direction, skipSubChannel); in onTransact() 282 bool skipSubChannel = data.readInt32() == 1; in onTransact() local 283 status_t status = step(direction, skipSubChannel); in onTransact()
|
/frameworks/av/include/radio/ |
D | IRadio.h | 44 virtual status_t step(radio_direction_t direction, bool skipSubChannel) = 0; 46 virtual status_t scan(radio_direction_t direction, bool skipSubChannel) = 0;
|
D | Radio.h | 57 status_t step(radio_direction_t direction, bool skipSubChannel); 59 status_t scan(radio_direction_t direction, bool skipSubChannel);
|
/frameworks/base/core/java/android/hardware/radio/ |
D | RadioTuner.java | 137 public abstract int step(int direction, boolean skipSubChannel); in step() argument 158 public abstract int scan(int direction, boolean skipSubChannel); in scan() argument
|
D | RadioModule.java | 72 public native int step(int direction, boolean skipSubChannel); in step() argument 74 public native int scan(int direction, boolean skipSubChannel); in scan() argument
|
/frameworks/av/services/radio/ |
D | RadioService.h | 156 virtual status_t scan(radio_direction_t direction, bool skipSubChannel); 158 virtual status_t step(radio_direction_t direction, bool skipSubChannel);
|
D | RadioService.cpp | 810 status_t RadioService::ModuleClient::scan(radio_direction_t direction, bool skipSubChannel) in scan() argument 819 status = (status_t)mTuner->scan(direction, skipSubChannel); in scan() 826 status_t RadioService::ModuleClient::step(radio_direction_t direction, bool skipSubChannel) in step() argument 835 status = (status_t)mTuner->step(direction, skipSubChannel); in step()
|
/frameworks/base/core/jni/ |
D | android_hardware_Radio.cpp | 695 android_hardware_Radio_step(JNIEnv *env, jobject thiz, jint direction, jboolean skipSubChannel) in android_hardware_Radio_step() argument 702 status_t status = module->step((radio_direction_t)direction, (bool)skipSubChannel); in android_hardware_Radio_step() 707 android_hardware_Radio_scan(JNIEnv *env, jobject thiz, jint direction, jboolean skipSubChannel) in android_hardware_Radio_scan() argument 714 status_t status = module->scan((radio_direction_t)direction, (bool)skipSubChannel); in android_hardware_Radio_scan()
|