/hardware/interfaces/audio/core/all-versions/default/ |
D | DevicesFactory.cpp | 34 Return<void> DevicesFactory::openDevice(IDevicesFactory::Device device, openDevice_cb _hidl_cb) { in openDevice() function in android::hardware::audio::CPP_VERSION::implementation::DevicesFactory 37 return openDevice<PrimaryDevice>(AUDIO_HARDWARE_MODULE_ID_PRIMARY, _hidl_cb); in openDevice() 39 return openDevice(AUDIO_HARDWARE_MODULE_ID_A2DP, _hidl_cb); in openDevice() 41 return openDevice(AUDIO_HARDWARE_MODULE_ID_USB, _hidl_cb); in openDevice() 43 return openDevice(AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX, _hidl_cb); in openDevice() 45 return openDevice(AUDIO_HARDWARE_MODULE_ID_STUB, _hidl_cb); in openDevice() 51 Return<void> DevicesFactory::openDevice(const hidl_string& moduleName, openDevice_cb _hidl_cb) { 53 return openDevice<PrimaryDevice>(moduleName.c_str(), _hidl_cb); 55 return openDevice(moduleName.c_str(), _hidl_cb); 58 return openDevice<PrimaryDevice>(AUDIO_HARDWARE_MODULE_ID_PRIMARY, _hidl_cb); [all …]
|
/hardware/interfaces/audio/core/all-versions/default/include/core/default/ |
D | DevicesFactory.h | 42 Return<void> openDevice(IDevicesFactory::Device device, openDevice_cb _hidl_cb) override; 44 Return<void> openDevice(const hidl_string& device, openDevice_cb _hidl_cb) override; 50 Return<void> openDevice(const char* moduleName, Callback _hidl_cb); 51 Return<void> openDevice(const char* moduleName, openDevice_cb _hidl_cb);
|
/hardware/libhardware/modules/camera/3_4/ |
D | v4l2_camera_hal.cpp | 159 int V4L2CameraHAL::openDevice(const hw_module_t* module, in openDevice() function in v4l2_camera_hal::V4L2CameraHAL 175 return mCameras[id]->openDevice(module, device); in openDevice() 213 return gCameraHAL.openDevice(module, name, device); in open_dev()
|
D | v4l2_camera_hal.h | 53 int openDevice(const hw_module_t* mod, const char* name, hw_device_t** dev);
|
D | camera.h | 48 int openDevice(const hw_module_t *module, hw_device_t **device);
|
D | camera.cpp | 71 int Camera::openDevice(const hw_module_t *module, hw_device_t **device) in openDevice() function in default_camera_hal::Camera
|
/hardware/libhardware/modules/usbcamera/ |
D | UsbCamera.h | 37 int openDevice();
|
D | Camera.h | 67 virtual int openDevice() = 0;
|
D | UsbCamera.cpp | 187 int UsbCamera::openDevice() { in openDevice() function in usb_camera_hal::UsbCamera
|
D | Camera.cpp | 145 return openDevice(); in open()
|
/hardware/interfaces/audio/2.0/ |
D | IDevicesFactory.hal | 44 openDevice(Device device) generates (Result retval, IDevice result);
|
/hardware/interfaces/audio/4.0/ |
D | IDevicesFactory.hal | 53 openDevice(string device) generates (Result retval, IDevice result);
|
/hardware/interfaces/audio/5.0/ |
D | IDevicesFactory.hal | 53 openDevice(string device) generates (Result retval, IDevice result);
|
/hardware/interfaces/audio/core/all-versions/vts/functional/4.0/ |
D | AudioPrimaryHidlHalTest.cpp | 35 ASSERT_OK(devicesFactory->openDevice("primary", returnIn(result, baseDevice))); in TEST_F()
|
/hardware/interfaces/audio/core/all-versions/vts/functional/ |
D | AudioPrimaryHidlHalTest.h | 248 ASSERT_OK(devicesFactory->openDevice(invalidDevice, returnIn(result, device))); in TEST_F() 280 ASSERT_OK(devicesFactory->openDevice(IDevicesFactory::Device::PRIMARY, in initPrimaryDevice()
|