/src/share/examples/pud/intro/ |
common.h | 1 #include <sys/ioctl.h>
|
doioctl.c | 4 #include <sys/ioctl.h> 28 if (ioctl(fd, INTROTOGGLE, &i) == -1) 29 err(1, "ioctl"); 31 if (ioctl(fd, INTROTOGGLE_R, &i) == -1) 32 err(1, "ioctl");
|
/src/sys/arch/bebox/include/ |
spkr.h | 4 * spkr.h -- interface definitions for speaker ioctl() 10 #include <sys/ioctl.h>
|
/src/sys/arch/i386/include/ |
spkr.h | 4 * spkr.h -- interface definitions for speaker ioctl() 10 #include <sys/ioctl.h>
|
/src/sys/arch/prep/include/ |
spkr.h | 4 * spkr.h -- interface definitions for speaker ioctl() 10 #include <sys/ioctl.h>
|
/src/sys/arch/sandpoint/include/ |
spkr.h | 4 * spkr.h -- interface definitions for speaker ioctl() 10 #include <sys/ioctl.h>
|
/src/usr.bin/audiocfg/ |
drvctl.h | 32 #include <sys/ioctl.h>
|
/src/tests/lib/libossaudio/ |
t_ossaudio.c | 53 if (ioctl(fd, AUDIO_GETFORMAT, &hwinfo) < 0) { 54 atf_tc_fail("ioctl AUDIO_GETFORMAT failed"); 61 if (ioctl(fd, SNDCTL_DSP_CHANNELS, &channels) < 0) 62 atf_tc_fail("ioctl SNDCTL_DSP_CHANNELS (1) failed"); 65 if (ioctl(fd, AUDIO_GETBUFINFO, &info) < 0) 66 atf_tc_fail("ioctl AUDIO_GETBUFINFO failed"); 72 if (ioctl(fd, SNDCTL_DSP_CHANNELS, &channels) < 0) 73 atf_tc_fail("ioctl SNDCTL_DSP_CHANNELS (2) failed"); 76 if (ioctl(fd, AUDIO_GETBUFINFO, &info) < 0) 77 atf_tc_fail("ioctl AUDIO_GETBUFINFO failed") [all...] |
/src/lib/libc/net/ |
sockatmark.c | 39 #include <sys/ioctl.h> 51 if (ioctl(s, SIOCATMARK, &val) == -1)
|
/src/lib/libc/termios/ |
tcdrain.c | 42 #include <sys/ioctl.h> 58 return (ioctl(fd, TIOCDRAIN, 0));
|
tcgetwinsize.c | 38 #define _NETBSD_SOURCE /* need the ioctl values to be in <termios.h> */ 41 #include <sys/ioctl.h> 47 return ioctl(fd, TIOCGWINSZ, ws);
|
tcsetwinsize.c | 38 #define _NETBSD_SOURCE /* need the ioctl values to be in <termios.h> */ 41 #include <sys/ioctl.h> 47 return ioctl(fd, TIOCSWINSZ, ws);
|
tcsendbreak.c | 43 #include <sys/ioctl.h> 63 if (ioctl(fd, TIOCSBRK, 0) == -1) 66 if (ioctl(fd, TIOCCBRK, 0) == -1)
|
tcsetattr.c | 42 #include <sys/ioctl.h> 68 return (ioctl(fd, TIOCSETA, t)); 70 return (ioctl(fd, TIOCSETAW, t)); 72 return (ioctl(fd, TIOCSETAF, t));
|
/src/sbin/cgdconfig/ |
cgdconfig_hostops.c | 35 #include <sys/ioctl.h> 44 .op_ioctl = ioctl,
|
/src/sbin/ifconfig/ |
ifconfig_hostops.c | 36 #include <sys/ioctl.h> 44 .op_ioctl = ioctl,
|
/src/sbin/raidctl/ |
raidctl_hostops.c | 35 #include <sys/ioctl.h> 45 .op_ioctl = ioctl,
|
/src/usr.sbin/sesd/srcs/ |
inienc.c | 41 #include <sys/ioctl.h> 55 if (ioctl(fd, SESIOC_INIT, NULL) < 0) {
|
/src/bin/ksh/ |
tty.c | 27 ret = ioctl(fd, TCGETA, ts); 29 ret = ioctl(fd, TIOCGETP, &ts->sgttyb); 31 if (ioctl(fd, TIOCGATC, &ts->lchars) < 0) 34 if (ioctl(fd, TIOCGETC, &ts->tchars) < 0) 37 if (ioctl(fd, TIOCGLTC, &ts->ltchars) < 0) 61 if (ioctl(tty_fd, TCSBRK, 1) < 0) 70 if (ioctl(tty_fd, TCSETA, ts) < 0) 73 if (ioctl(tty_fd, TCSETAW, ts) < 0) 77 ret = ioctl(fd, TIOCSETN, &ts->sgttyb); 79 if (ioctl(fd, TIOCSATC, &ts->lchars) < 0 [all...] |
/src/lib/libpci/ |
pci_device.c | 46 #include <sys/ioctl.h> 65 rv = ioctl(fd, PCI_IOC_CFGREAD, &r); 88 return (ioctl(fd, PCI_IOC_CFGWRITE, &r));
|
/src/include/ |
sgtty.h | 40 #include <sys/ioctl.h>
|
/src/lib/libc/stdlib/ |
pty.c | 42 #include <sys/ioctl.h> 48 return ioctl(fildes, TIOCGRANTPT, 0); 64 if (ioctl(fildes, TIOCPTSNAME, &pm) == -1) 76 if (ioctl(fildes, TIOCPTSNAME, &pm) == -1)
|
/src/sys/arch/luna68k/include/ |
xpio.h | 28 * ioctl for LUNA's Hitachi HD647180 "XP" I/O processor driver 34 #include <sys/ioctl.h>
|
/src/sys/arch/mac68k/include/ |
iteioctl.h | 40 #include <sys/ioctl.h>
|
/src/bin/dd/ |
dd_hostops.c | 35 #include <sys/ioctl.h> 46 .op_ioctl = ioctl,
|