Lines Matching full:hw_device
479 struct audio_hw_device hw_device;
890 adev_set_voice_volume(&adev->hw_device, adev->voice_volume);
2515 adev->hw_device.common.tag = HARDWARE_DEVICE_TAG;
2516 adev->hw_device.common.version = 0;
2517 adev->hw_device.common.module = (struct hw_module_t *) module;
2518 adev->hw_device.common.close = adev_close;
2520 adev->hw_device.get_supported_devices = adev_get_supported_devices;
2521 adev->hw_device.init_check = adev_init_check;
2522 adev->hw_device.set_voice_volume = adev_set_voice_volume;
2523 adev->hw_device.set_master_volume = adev_set_master_volume;
2524 adev->hw_device.set_mode = adev_set_mode;
2525 adev->hw_device.set_mic_mute = adev_set_mic_mute;
2526 adev->hw_device.get_mic_mute = adev_get_mic_mute;
2527 adev->hw_device.set_parameters = adev_set_parameters;
2528 adev->hw_device.get_parameters = adev_get_parameters;
2529 adev->hw_device.get_input_buffer_size = adev_get_input_buffer_size;
2530 adev->hw_device.open_output_stream = adev_open_output_stream;
2531 adev->hw_device.close_output_stream = adev_close_output_stream;
2532 adev->hw_device.open_input_stream = adev_open_input_stream;
2533 adev->hw_device.close_input_stream = adev_close_input_stream;
2534 adev->hw_device.dump = adev_dump;
2619 *device = &adev->hw_device.common;