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

1234

/frameworks/av/services/camera/libcameraservice/api1/
H A DCamera2Client.h97 status_t initialize(camera_module_t *module);
H A DCameraClient.h71 status_t initialize(camera_module_t *module);
/frameworks/av/services/camera/libcameraservice/common/
H A DCameraDeviceBase.h48 virtual status_t initialize(camera_module_t *module) = 0;
/frameworks/av/services/camera/libcameraservice/api_pro/
H A DProCamera2Client.cpp53 status_t ProCamera2Client::initialize(camera_module_t *module) argument
58 res = Camera2ClientBase::initialize(module);
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp144 ALOGE_IF(rc, "%s couldn't load audio hw module %s.%s (%s)", __func__,
275 audio_module_handle_t module,
278 // if module is 0, the request comes from an old policy manager and we should load
280 if (module == 0) {
285 // then try to find a module supporting the requested device.
294 // check a match for the requested module handle
295 AudioHwDevice *audioHwDevice = mAudioHwDevs.valueFor(module);
1496 ALOGW("loadHwModule() module %s already loaded", name);
1505 ALOGI("loadHwModule() error %d loading module %s ", rc, name);
1513 ALOGI("loadHwModule() init check error %d for module
274 findSuitableHwDev_l( audio_module_handle_t module, audio_devices_t devices) argument
1626 openOutput_l(audio_module_handle_t module, audio_io_handle_t *output, audio_config_t *config, audio_devices_t devices, const String8& address, audio_output_flags_t flags) argument
1708 openOutput(audio_module_handle_t module, audio_io_handle_t *output, audio_config_t *config, audio_devices_t *devices, const String8& address, uint32_t *latencyMs, audio_output_flags_t flags) argument
1883 openInput(audio_module_handle_t module, audio_io_handle_t *input, audio_config_t *config, audio_devices_t *device, const String8& address, audio_source_t source, audio_input_flags_t flags) argument
1907 openInput_l(audio_module_handle_t module, audio_io_handle_t *input, audio_config_t *config, audio_devices_t device, const String8& address, audio_source_t source, audio_input_flags_t flags) argument
[all...]
H A DPatchPanel.cpp158 // limit number of sources to 1 for now or 2 sources for special cross hw module case.
182 ALOGW("createAudioPatch() bad src hw module %d", srcModule);
213 // limit to device to device connection if not on same hw module
215 ALOGW("createAudioPatch() invalid sink type for cross hw module");
337 ALOGW("createAudioPatch() bad src hw module %d", srcModule);
349 // limit to connections between sinks and sources on same HW module
574 ALOGW("releaseAudioPatch() bad src hw module %d", srcModule);
621 ALOGW("releaseAudioPatch() bad src hw module %d", srcModule);
671 audio_module_handle_t module; local
673 module
[all...]
/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/native/services/surfaceflinger/DisplayHardware/
H A DHWComposer.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.cpp438 virtual status_t openOutput(audio_module_handle_t module, argument
451 data.writeInt32(module);
512 virtual status_t openInput(audio_module_handle_t module, argument
525 data.writeInt32(module);
1090 audio_module_handle_t module = (audio_module_handle_t)data.readInt32(); local
1098 status_t status = openOutput(module, &output, &config,
1134 audio_module_handle_t module = (audio_module_handle_t)data.readInt32(); local
1143 status_t status = openInput(module, &input, &config,
/frameworks/av/services/audiopolicy/
H A DAudioPolicyManager.cpp250 sp<HwModule> module = getModuleForDevice(device); local
251 if (module == 0) {
252 ALOGD("setDeviceConnectionState() could not find HW module for device %08x",
258 mAvailableOutputDevices[index]->mModule = module;
358 sp<HwModule> module = getModuleForDevice(device); local
359 if (module == NULL) {
360 ALOGW("setDeviceConnectionState(): could not find HW module for device %08x",
371 mAvailableInputDevices[index]->mModule = module;
466 // If the RX device is on the primary HW module, then use legacy routing method for voice calls
471 // If the TX device is also on the primary HW module, setOutputDevic
2094 sp <HwModule> module; local
2121 sp <HwModule> module; local
5760 AudioPort(const String8& name, audio_port_type_t type, audio_port_role_t role, const sp<HwModule>& module) argument
6576 IOProfile(const String8& name, audio_port_role_t role, const sp<HwModule>& module) argument
7055 sp<HwModule> module = new HwModule(root->name); local
7115 loadGlobalConfig(cnode *root, const sp<HwModule>& module) argument
7188 sp<HwModule> module; local
[all...]
H A DAudioPolicyService.h364 // Audio HW module functions
367 // loads a HW module.
378 virtual status_t openOutput(audio_module_handle_t module,
401 virtual audio_io_handle_t openInput(audio_module_handle_t module,
H A DAudioPolicyManager.h236 audio_port_role_t role, const sp<HwModule>& module);
285 sp<HwModule> mModule; // audio HW module exposing this I/O stream
378 IOProfile(const String8& name, audio_port_role_t role, const sp<HwModule>& module);
411 const char *const mName; // base name of the audio HW module (primary, a2dp ...)
414 Vector < sp<IOProfile> > mOutputProfiles; // output profiles exposed by this module
415 Vector < sp<IOProfile> > mInputProfiles; // input profiles exposed by this module
762 void loadGlobalConfig(cnode *root, const sp<HwModule>& module);
/frameworks/compile/libbcc/bcinfo/
H A DMetadataExtractor.cpp77 MetadataExtractor::MetadataExtractor(const llvm::Module *module) argument
78 : mModule(module), mBitcode(NULL), mBitcodeSize(0), mExportVarCount(0),
401 ALOGE("Invalid/empty bitcode/module");
/frameworks/base/services/core/jni/
H A Dcom_android_server_location_FlpHardwareProvider.cpp144 * the HW module and obtaining the proper interfaces.
174 // open the hardware module
175 const hw_module_t* module = NULL; local
176 int err = hw_get_module(FUSED_LOCATION_HARDWARE_MODULE_ID, &module);
182 err = module->methods->open(
183 module,
H A Dcom_android_server_tv_TvInputHal.cpp292 tv_input_module_t* module = NULL; local
294 (hw_module_t const**)&module);
296 ALOGE("Couldn't load %s module (%s)",
302 err = module->common.methods->open(
303 (hw_module_t*)module,
H A Dcom_android_server_location_GpsLocationProvider.cpp444 hw_module_t* module; local
479 err = hw_get_module(GPS_HARDWARE_MODULE_ID, (hw_module_t const**)&module);
482 err = module->methods->open(module, GPS_HARDWARE_MODULE_ID, &device);
/frameworks/native/opengl/libagl/
H A Dtexture.cpp135 gralloc_module_t const* module = local
139 int err = module->lock(module, native_buffer->handle,
163 gralloc_module_t const* module = local
166 module->unlock(module, native_buffer->handle);
H A Degl.cpp245 gralloc_module_t const* module; member in struct:android::egl_window_surface_v2_t
345 nativeWindow(window), buffer(0), previousBuffer(0), module(0),
350 module = reinterpret_cast<gralloc_module_t const*>(pModule);
439 err = module->lock(module, buf->handle,
450 err = module->unlock(module, buf->handle);
/frameworks/av/services/camera/libcameraservice/api2/
H A DCameraDeviceClient.cpp68 status_t CameraDeviceClient::initialize(camera_module_t *module) argument
73 res = Camera2ClientBase::initialize(module);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DomxVCM4P2_PredictReconCoefIntra_s.s13 ; * Contains module for DC/AC coefficient prediction
/frameworks/av/services/camera/libcameraservice/device2/
H A DCamera2Device.h46 virtual status_t initialize(camera_module_t *module);
H A DCamera2Device.cpp56 status_t Camera2Device::initialize(camera_module_t *module) argument
71 res = CameraService::filterOpenErrorCode(module->common.methods->open(
72 &module->common, name, reinterpret_cast<hw_device_t**>(&device)));
90 res = module->get_camera_info(mId, &info);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DomxVCM4P2_PredictReconCoefIntra_s.s13 ; * Contains module for DC/AC coefficient prediction
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.h156 virtual status_t initialize(camera_module_t *module) = 0;
341 // Delay-load the Camera HAL module
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3Device.h76 virtual status_t initialize(camera_module_t *module);

Completed in 1229 milliseconds

1234