Home
last modified time | relevance | path

Searched refs:MIXER_WRITE (Results 1 – 3 of 3) sorted by relevance

/external/kernel-headers/original/uapi/linux/
Dsoundcard.h880 #define MIXER_WRITE(dev) _SIOWR('M', dev, int) macro
881 #define SOUND_MIXER_WRITE_VOLUME MIXER_WRITE(SOUND_MIXER_VOLUME)
882 #define SOUND_MIXER_WRITE_BASS MIXER_WRITE(SOUND_MIXER_BASS)
883 #define SOUND_MIXER_WRITE_TREBLE MIXER_WRITE(SOUND_MIXER_TREBLE)
884 #define SOUND_MIXER_WRITE_SYNTH MIXER_WRITE(SOUND_MIXER_SYNTH)
885 #define SOUND_MIXER_WRITE_PCM MIXER_WRITE(SOUND_MIXER_PCM)
886 #define SOUND_MIXER_WRITE_SPEAKER MIXER_WRITE(SOUND_MIXER_SPEAKER)
887 #define SOUND_MIXER_WRITE_LINE MIXER_WRITE(SOUND_MIXER_LINE)
888 #define SOUND_MIXER_WRITE_MIC MIXER_WRITE(SOUND_MIXER_MIC)
889 #define SOUND_MIXER_WRITE_CD MIXER_WRITE(SOUND_MIXER_CD)
[all …]
/external/toybox/toys/other/
Dmix.c64 xioctl(fd, MIXER_WRITE(channel), &level);
/external/python/cpython2/Modules/
Dossaudiodev.c731 if (ioctl(self->fd, MIXER_WRITE(channel), &volume) == -1) in oss_mixer_set()