Searched refs:subChannel (Results 1 – 10 of 10) sorted by relevance
/frameworks/av/radio/ |
D | IRadio.cpp | 148 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()
|
D | Radio.cpp | 198 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/ |
D | IRadio.h | 48 virtual status_t tune(unsigned int channel, unsigned int subChannel) = 0;
|
D | Radio.h | 61 status_t tune(unsigned int channel, unsigned int subChannel);
|
/frameworks/base/core/java/android/hardware/radio/ |
D | RadioTuner.java | 176 public abstract int tune(int channel, int subChannel); in tune() argument
|
D | RadioModule.java | 73 public native int tune(int channel, int subChannel); in tune() argument
|
D | RadioManager.java | 1147 ProgramInfo(int channel, int subChannel, boolean tuned, boolean stereo, in ProgramInfo() argument 1150 mSubChannel = subChannel; in ProgramInfo()
|
/frameworks/av/services/radio/ |
D | RadioService.h | 156 virtual status_t tune(unsigned int channel, unsigned int subChannel);
|
D | RadioService.cpp | 820 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/ |
D | android_hardware_Radio.cpp | 716 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()
|