Searched defs:skipSubChannel (Results 1 - 5 of 5) sorted by relevance

/frameworks/av/radio/
H A DIRadio.cpp123 virtual status_t scan(radio_direction_t direction, bool skipSubChannel) argument
128 data.writeInt32(skipSubChannel ? 1 : 0);
136 virtual status_t step(radio_direction_t direction, bool skipSubChannel) argument
141 data.writeInt32(skipSubChannel ? 1 : 0);
274 bool skipSubChannel = data.readInt32() == 1; local
275 status_t status = scan(direction, skipSubChannel);
282 bool skipSubChannel = data.readInt32() == 1; local
283 status_t status = step(direction, skipSubChannel);
/frameworks/base/core/java/android/hardware/radio/
H A DRadioModule.java72 public native int step(int direction, boolean skipSubChannel); argument
74 public native int scan(int direction, boolean skipSubChannel); argument
H A DRadioTuner.java124 * @param skipSubChannel indicates to skip sub channels when the configuration currently
137 public abstract int step(int direction, boolean skipSubChannel); argument
145 * @param skipSubChannel indicates to skip sub channels when the configuration currently
158 public abstract int scan(int direction, boolean skipSubChannel); argument
/frameworks/av/services/radio/
H A DRadioService.cpp810 status_t RadioService::ModuleClient::scan(radio_direction_t direction, bool skipSubChannel) argument
819 status = (status_t)mTuner->scan(direction, skipSubChannel);
826 status_t RadioService::ModuleClient::step(radio_direction_t direction, bool skipSubChannel) argument
835 status = (status_t)mTuner->step(direction, skipSubChannel);
/frameworks/base/core/jni/
H A Dandroid_hardware_Radio.cpp695 android_hardware_Radio_step(JNIEnv *env, jobject thiz, jint direction, jboolean skipSubChannel) argument
702 status_t status = module->step((radio_direction_t)direction, (bool)skipSubChannel);
707 android_hardware_Radio_scan(JNIEnv *env, jobject thiz, jint direction, jboolean skipSubChannel) argument
714 status_t status = module->scan((radio_direction_t)direction, (bool)skipSubChannel);

Completed in 5805 milliseconds