Home | History | Annotate | Download | only in usbaudio

Lines Matching defs:hw_device

51     struct audio_hw_device hw_device;
1258 adev->hw_device.common.tag = HARDWARE_DEVICE_TAG;
1259 adev->hw_device.common.version = AUDIO_DEVICE_API_VERSION_2_0;
1260 adev->hw_device.common.module = (struct hw_module_t *)module;
1261 adev->hw_device.common.close = adev_close;
1263 adev->hw_device.init_check = adev_init_check;
1264 adev->hw_device.set_voice_volume = adev_set_voice_volume;
1265 adev->hw_device.set_master_volume = adev_set_master_volume;
1266 adev->hw_device.set_mode = adev_set_mode;
1267 adev->hw_device.set_mic_mute = adev_set_mic_mute;
1268 adev->hw_device.get_mic_mute = adev_get_mic_mute;
1269 adev->hw_device.set_parameters = adev_set_parameters;
1270 adev->hw_device.get_parameters = adev_get_parameters;
1271 adev->hw_device.get_input_buffer_size = adev_get_input_buffer_size;
1272 adev->hw_device.open_output_stream = adev_open_output_stream;
1273 adev->hw_device.close_output_stream = adev_close_output_stream;
1274 adev->hw_device.open_input_stream = adev_open_input_stream;
1275 adev->hw_device.close_input_stream = adev_close_input_stream;
1276 adev->hw_device.dump = adev_dump;
1278 *device = &adev->hw_device.common;