HomeSort by: relevance | last modified time | path
    Searched refs:SNDCTL_DSP_CHANNELS (Results 1 - 5 of 5) sorted by relevancy

  /src/tests/lib/libossaudio/
t_ossaudio.c 58 /* Verify SNDCTL_DSP_CHANNELS sets the device to mono. */
61 if (ioctl(fd, SNDCTL_DSP_CHANNELS, &channels) < 0)
62 atf_tc_fail("ioctl SNDCTL_DSP_CHANNELS (1) failed");
69 /* Verify SNDCTL_DSP_CHANNELS sets the device to stereo. */
72 if (ioctl(fd, SNDCTL_DSP_CHANNELS, &channels) < 0)
73 atf_tc_fail("ioctl SNDCTL_DSP_CHANNELS (2) failed");
81 * Verify an invalid argument to SNDCTL_DSP_CHANNELS leaves the device
86 if (ioctl(fd, SNDCTL_DSP_CHANNELS, &channels) < 0)
87 atf_tc_fail("ioctl SNDCTL_DSP_CHANNELS (0) failed");
95 * SNDCTL_DSP_STEREO is an older alternative to SNDCTL_DSP_CHANNELS
    [all...]
  /src/lib/libossaudio/
soundcard.h 75 #define SNDCTL_DSP_CHANNELS _IOWR('P', 6, int)
76 #define SOUND_PCM_WRITE_CHANNELS SNDCTL_DSP_CHANNELS
oss_dsp.c 225 case SNDCTL_DSP_CHANNELS:
506 * case an application is abusing SNDCTL_DSP_CHANNELS - OSSv4 always sets and
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_platform_limits_netbsd.cc 2272 unsigned IOCTL_SNDCTL_DSP_CHANNELS = SNDCTL_DSP_CHANNELS;
sanitizer_interceptors_ioctl_netbsd.inc 1367 _(SNDCTL_DSP_CHANNELS, READWRITE, sizeof(int));

Completed in 18 milliseconds