Lines Matching refs:mModule

233     mModule = module;  in CameraModule()
260 mModule->init != NULL) { in init()
262 res = mModule->init(); in init()
279 int apiVersion = mModule->common.module_api_version; in getCameraInfo()
283 ret = mModule->get_camera_info(cameraId, info); in getCameraInfo()
296 int ret = mModule->get_camera_info(cameraId, &rawInfo); in getCameraInfo()
330 int apiVersion = mModule->common.module_api_version; in getPhysicalCameraInfo()
336 if (mModule->get_physical_camera_info == nullptr) { in getPhysicalCameraInfo()
346 int ret = mModule->get_physical_camera_info(physicalCameraId, &info); in getPhysicalCameraInfo()
387 res = filterOpenErrorCode(mModule->common.methods->open(&mModule->common, id, device)); in open()
396 return mModule->open_legacy != NULL; in isOpenLegacyDefined()
403 res = mModule->open_legacy(&mModule->common, id, halVersion, device); in openLegacy()
411 numCameras = mModule->get_number_of_cameras(); in getNumberOfCameras()
420 res = mModule->set_callbacks(callbacks); in setCallbacks()
427 return mModule->get_vendor_tag_ops != NULL; in isVendorTagDefined()
431 if (mModule->get_vendor_tag_ops) { in getVendorTagOps()
433 mModule->get_vendor_tag_ops(ops); in getVendorTagOps()
440 if (mModule->set_torch_mode == NULL) { in isSetTorchModeSupported()
452 if (mModule->set_torch_mode != NULL) { in setTorchMode()
454 res = mModule->set_torch_mode(camera_id, enable); in setTorchMode()
462 if (mModule->is_stream_combination_supported != NULL) { in isStreamCombinationSupported()
464 res = mModule->is_stream_combination_supported(cameraId, streams); in isStreamCombinationSupported()
472 mModule->notify_device_state_change != NULL) { in notifyDeviceStateChange()
476 mModule->notify_device_state_change(deviceState); in notifyDeviceStateChange()
559 return mModule->common.module_api_version; in getModuleApiVersion()
563 return mModule->common.name; in getModuleName()
567 return mModule->common.hal_api_version; in getHalApiVersion()
571 return mModule->common.author; in getModuleAuthor()
575 return mModule->common.dso; in getDso()