Home | History | Annotate | Download | only in audio

Lines Matching defs:hw_device

65     struct audio_hw_device hw_device;
647 adev->hw_device.common.tag = HARDWARE_DEVICE_TAG;
648 adev->hw_device.common.version = AUDIO_DEVICE_API_VERSION_2_0;
649 adev->hw_device.common.module = (struct hw_module_t *) module;
650 adev->hw_device.common.close = adev_close;
651 adev->hw_device.init_check = adev_init_check;
652 adev->hw_device.set_voice_volume = adev_set_voice_volume;
653 adev->hw_device.set_master_volume = adev_set_master_volume;
654 adev->hw_device.get_master_volume = adev_get_master_volume;
655 adev->hw_device.set_master_mute = adev_set_master_mute;
656 adev->hw_device.get_master_mute = adev_get_master_mute;
657 adev->hw_device.set_mode = adev_set_mode;
658 adev->hw_device.set_mic_mute = adev_set_mic_mute;
659 adev->hw_device.get_mic_mute = adev_get_mic_mute;
660 adev->hw_device.set_parameters = adev_set_parameters;
661 adev->hw_device.get_parameters = adev_get_parameters;
662 adev->hw_device.get_input_buffer_size = adev_get_input_buffer_size;
663 adev->hw_device.open_output_stream = adev_open_output_stream;
664 adev->hw_device.close_output_stream = adev_close_output_stream;
665 adev->hw_device.open_input_stream = adev_open_input_stream;
666 adev->hw_device.close_input_stream = adev_close_input_stream;
667 adev->hw_device.dump = adev_dump;
671 *device = &adev->hw_device.common;