Home
last modified time | relevance | path

Searched refs:withAudio (Results 1 – 9 of 9) sorted by relevance

/frameworks/av/radio/
DIRadioService.cpp83 bool withAudio, in attach() argument
90 …ALOGV("attach() config %p withAudio %d region %d type %d", config, withAudio, config->region, conf… in attach()
97 data.writeInt32(withAudio ? 1 : 0); in attach()
161 bool withAudio = data.readInt32() != 0; in onTransact() local
162 ALOGV("ATTACH configPtr %p withAudio %d", configPtr, withAudio); in onTransact()
164 status_t status = attach(handle, client, configPtr, withAudio, radio); in onTransact()
DRadio.cpp96 bool withAudio, in attach() argument
106 status_t status = service->attach(handle, radio, config, withAudio, radio->mIRadio); in attach()
/frameworks/base/core/java/android/hardware/radio/
DRadioModule.java39 RadioModule(int moduleId, RadioManager.BandConfig config, boolean withAudio, in RadioModule() argument
43 native_setup(new WeakReference<RadioModule>(this), config, withAudio); in RadioModule()
46 RadioManager.BandConfig config, boolean withAudio); in native_setup() argument
DRadioManager.java1286 public RadioTuner openTuner(int moduleId, BandConfig config, boolean withAudio, in openTuner() argument
1291 RadioModule module = new RadioModule(moduleId, config, withAudio, callback, handler); in openTuner()
/frameworks/av/include/radio/
DIRadioService.h42 bool withAudio,
DRadio.h43 bool withAudio,
/frameworks/av/services/radio/
DRadioService.cpp122 bool withAudio, in attach() argument
125 ALOGV("%s %d config %p withAudio %d", __FUNCTION__, handle, config, withAudio); in attach()
146 radio = module->addClient(client, config, withAudio); in attach()
DRadioService.h57 bool withAudio,
/frameworks/base/core/jni/
Dandroid_hardware_Radio.cpp543 jobject weak_this, jobject jConfig, jboolean withAudio) in android_hardware_Radio_setup() argument
562 sp<Radio> module = Radio::attach(handle, configPtr, (bool)withAudio, callback); in android_hardware_Radio_setup()