Searched refs:module (Results 51 - 75 of 99) sorted by relevance

1234

/frameworks/av/services/audioflinger/
H A DAudioFlinger.h166 virtual status_t openOutput(audio_module_handle_t module,
183 virtual status_t openInput(audio_module_handle_t module,
339 AudioHwDevice* findSuitableHwDev_l(audio_module_handle_t module,
529 sp<RecordThread> openInput_l(audio_module_handle_t module,
536 sp<PlaybackThread> openOutput_l(audio_module_handle_t module,
H A DPatchPanel.cpp159 // limit number of sources to 1 for now or 2 sources for special cross hw module case.
191 ALOGW("createAudioPatch() bad src hw module %d", srcModule);
215 // - source HW module != destination HW module OR
327 ALOGW("createAudioPatch() bad src hw module %d", srcModule);
340 // limit to connections between sinks and sources on same HW module
565 ALOGW("releaseAudioPatch() bad src hw module %d", srcModule);
600 ALOGW("releaseAudioPatch() bad src hw module %d", srcModule);
642 audio_module_handle_t module; local
644 module
[all...]
/frameworks/av/services/camera/libcameraservice/device1/
H A DCameraHardwareInterface.h100 status_t initialize(CameraModule *module) argument
104 status_t res = module->getCameraInfo(atoi(mName.string()), &info);
110 if (module->getModuleApiVersion() >= CAMERA_MODULE_API_VERSION_2_3 &&
113 rc = module->openLegacy(mName.string(),
117 rc = module->open(mName.string(), (hw_device_t **)&mDevice);
/frameworks/av/services/camera/libcameraservice/common/
H A DCameraModule.cpp233 CameraModule::CameraModule(camera_module_t *module) { argument
234 if (module == NULL) {
235 ALOGE("%s: camera hardware module must not be null", __FUNCTION__);
238 mModule = module;
289 // Get camera info from raw module and cache it
H A DCameraDeviceBase.h51 virtual status_t initialize(CameraModule *module) = 0;
H A DCamera2ClientBase.cpp82 status_t Camera2ClientBase<TClientBase>::initialize(CameraModule *module) { argument
100 res = mDevice->initialize(module);
/frameworks/native/services/inputflinger/host/
H A DInputDriver.cpp115 const hw_module_t* module; local
116 int err = input_open(&module, name);
117 LOG_ALWAYS_FATAL_IF(err != 0, "Input module %s not found", name);
118 mHal = reinterpret_cast<const input_module_t*>(module);
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DAudioPort.h66 virtual void attach(const sp<HwModule>& module);
143 sp<HwModule> mModule; // audio HW module exposing this I/O stream
/frameworks/av/services/camera/libcameraservice/api1/
H A DCameraClient.h73 status_t initialize(CameraModule *module);
H A DCamera2Client.h101 status_t initialize(CameraModule *module);
/frameworks/compile/libbcc/include/bcinfo/
H A DMetadataExtractor.h143 * Reads metadata from \p module.
145 * \param module - input module.
147 MetadataExtractor(const llvm::Module *module);
169 * \return number of exported global variables (slots) in this script/module.
183 * \return number of exported global functions (slots) in this script/module.
197 * \return number of exported ForEach functions in this script/module.
225 * \return number of exported general reduce kernels (slots) in this script/module.
392 * \return whether the module contains debug metadata
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMException.h145 static std::unique_ptr<ARMExData> create(Module &module);
/frameworks/opt/net/wifi/tests/wifitests/
H A DAndroid.mk75 # This list is generated from the java source files in this module
93 # These patterns will match all classes in this module and their inner classes.
/frameworks/av/services/audiopolicy/
H A DAudioPolicyInterface.h38 // The main roles of this module are:
244 // Audio HW module functions
247 // loads a HW module.
258 virtual status_t openOutput(audio_module_handle_t module,
281 virtual status_t openInput(audio_module_handle_t module,
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DDeviceDescriptor.cpp43 void DeviceDescriptor::attach(const sp<HwModule>& module) argument
45 AudioPort::attach(module);
H A DAudioPort.cpp34 void AudioPort::attach(const sp<HwModule>& module) argument
36 mModule = module;
64 return "invalid module";
/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyService.cpp70 const struct hw_module_t *module; local
88 rc = hw_get_module(AUDIO_POLICY_HARDWARE_MODULE_ID, &module);
92 rc = audio_policy_dev_open(module, &mpAudioPolicyDev);
110 ALOGI("Loaded audio policy from %s (%s)", module->name, module->id);
1157 audio_module_handle_t module,
1178 audio_module_handle_t module,
/frameworks/av/media/libeffects/testlibs/
H A DEffectReverb.c103 reverb_module_t *module; local
126 module = malloc(sizeof(reverb_module_t));
128 module->itfe = &gReverbInterface;
130 module->context.mState = REVERB_STATE_UNINITIALIZED;
138 ret = Reverb_Init(module, aux, preset);
141 free(module);
145 *pHandle = (effect_handle_t) module;
147 module->context.mState = REVERB_STATE_INITIALIZED;
149 ALOGV("EffectLibCreateEffect %p ,size %d", module, sizeof(reverb_module_t));
442 * pRvbModule - pointer to reverb effect module
[all...]
/frameworks/base/core/java/android/hardware/radio/
H A DRadioManager.java56 /** Radio module class supporting FM (including HD radio) and AM */
58 /** Radio module class supporting satellite radio */
60 /** Radio module class supporting Digital terrestrial radio */
95 * Lists properties, options and radio bands supported by a given broadcast radio module.
96 * Each module has a unique ID used to address it when calling RadioManager APIs.
128 /** Unique module identifier provided by the native service.
130 * @return the radio module unique identifier.
137 * @return the radio module class identifier.
143 /** Human readable broadcast radio module implementor
144 * @return the name of the radio module implementato
[all...]
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWComposer_hwc1.cpp211 // Load and prepare the hardware composer module. Sets mHwc.
214 hw_module_t const* module; local
216 if (hw_get_module(HWC_HARDWARE_MODULE_ID, &module) != 0) {
217 ALOGE("%s module not found", HWC_HARDWARE_MODULE_ID);
221 int err = hwc_open_1(module, &mHwc);
239 // Load and prepare the FB HAL, which uses the gralloc module. Sets mFbDev.
242 hw_module_t const* module; local
244 int err = hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &module);
246 ALOGE("%s module not found", GRALLOC_HARDWARE_MODULE_ID);
250 return framebuffer_open(module,
[all...]
/frameworks/av/media/libmedia/
H A DIAudioFlinger.cpp452 virtual status_t openOutput(audio_module_handle_t module, argument
465 data.writeInt32(module);
526 virtual status_t openInput(audio_module_handle_t module, argument
539 data.writeInt32(module);
1132 audio_module_handle_t module = (audio_module_handle_t)data.readInt32(); local
1142 status_t status = openOutput(module, &output, &config,
1178 audio_module_handle_t module = (audio_module_handle_t)data.readInt32(); local
1189 status_t status = openInput(module, &input, &config,
/frameworks/support/
H A Dapicheck.mk18 # $(support_module) - name of the support library module
/frameworks/support/v17/preference-leanback/
H A DAndroid.mk17 # Android libraries referenced by this module's resources.
/frameworks/av/services/camera/libcameraservice/api2/
H A DCameraDeviceClient.h148 virtual status_t initialize(CameraModule *module);
/frameworks/base/services/core/jni/
H A Dcom_android_server_location_FlpHardwareProvider.cpp196 * the HW module and obtaining the proper interfaces.
242 // open the hardware module
243 const hw_module_t* module = NULL; local
244 int err = hw_get_module(FUSED_LOCATION_HARDWARE_MODULE_ID, &module);
250 err = module->methods->open(
251 module,

Completed in 544 milliseconds

1234