Home
last modified time | relevance | path

Searched refs:subChannel (Results 1 – 10 of 10) sorted by relevance

/frameworks/av/radio/
DIRadio.cpp148 virtual status_t tune(unsigned int channel, unsigned int subChannel) in tune() argument
153 data.writeInt32(subChannel); in tune()
292 unsigned int subChannel = (unsigned int)data.readInt32(); in onTransact() local
293 status_t status = tune(channel, subChannel); in onTransact()
DRadio.cpp198 status_t Radio::tune(unsigned int channel, unsigned int subChannel) in tune() argument
204 return mIRadio->tune(channel, subChannel); in tune()
/frameworks/av/include/radio/
DIRadio.h48 virtual status_t tune(unsigned int channel, unsigned int subChannel) = 0;
DRadio.h61 status_t tune(unsigned int channel, unsigned int subChannel);
/frameworks/base/core/java/android/hardware/radio/
DRadioTuner.java176 public abstract int tune(int channel, int subChannel); in tune() argument
DRadioModule.java73 public native int tune(int channel, int subChannel); in tune() argument
DRadioManager.java1147 ProgramInfo(int channel, int subChannel, boolean tuned, boolean stereo, in ProgramInfo() argument
1150 mSubChannel = subChannel; in ProgramInfo()
/frameworks/av/services/radio/
DRadioService.h156 virtual status_t tune(unsigned int channel, unsigned int subChannel);
DRadioService.cpp820 status_t RadioService::ModuleClient::tune(unsigned int channel, unsigned int subChannel) in tune() argument
826 status = (status_t)mTuner->tune(mTuner, channel, subChannel); in tune()
/frameworks/base/core/jni/
Dandroid_hardware_Radio.cpp716 android_hardware_Radio_tune(JNIEnv *env, jobject thiz, jint channel, jint subChannel) in android_hardware_Radio_tune() argument
723 status_t status = module->tune((unsigned int)channel, (unsigned int)subChannel); in android_hardware_Radio_tune()