Searched refs:ioctl (Results 1 - 25 of 377) sorted by relevance

1234567891011>>

/osnet-11/usr/src/lib/libc/common/sys/
H A Dioctl.s30 .file "ioctl.s"
32 /* C library -- ioctl */
33 /* int ioctl (int fildes, int request, ... ); */
37 ANSI_PRAGMA_WEAK(ioctl,function)
41 SYSCALL_RESTART_RVAL1(ioctl)
43 SET_SIZE(ioctl)
/osnet-11/usr/src/grub/grub2/include/grub/emu/
H A Dexport.h5 void EXPORT_FUNC (ioctl) (void);
/osnet-11/usr/src/lib/libcurses/screen/
H A Dflushinp.c58 (void) ioctl(cur_term -> Filedes, TCFLSH, 0);
61 (void) ioctl(cur_term -> Filedes, TIOCGETP, &(PROGTTY));
65 * Really want an ioctl like TCFLSH but Berkeley doesn't have one.
67 (void) ioctl(cur_term -> Filedes, TIOCSETP, &(PROGTTY));
H A Ddef_prog.c51 /* ioctl errors are ignored so pipes work */
53 if ((prog_istermios = ioctl(cur_term -> Filedes,
57 (void) ioctl(cur_term -> Filedes, TCGETA, &(PROGTTY));
66 (void) ioctl(cur_term -> Filedes, TIOCGETP, &(PROGTTY));
H A Dreset_sh.c57 (void) ioctl(cur_term->Filedes, DIOCSETT, &cur_term -> old);
70 (void) ioctl(cur_term -> Filedes, TCSETAW, &SHELLTTY);
72 (void) ioctl(cur_term -> Filedes, TCSETSW, &SHELLTTYS);
75 (void) ioctl(cur_term -> Filedes, TIOCLSET,
81 (void) ioctl(cur_term -> Filedes, TIOCSETN, &SHELLTTY);
84 (void) ioctl(cur_term -> Filedes, TIOCLSET,
H A Ddraino.c59 * Needs Berkeley TIOCOUTQ ioctl. Returns ERR if impossible.
74 int rv; /* ioctl return value */
78 rv = ioctl(cur_term->Filedes, TIOCOUTQ, &ncthere);
85 return (ERR); /* ioctl didn't work */
110 (void) ioctl(cur_term->Filedes, TCSETAW, &PROGTTY);
112 (void) ioctl(cur_term->Filedes, TCSETSW, &PROGTTYS);
114 (void) ioctl(cur_term->Filedes, TCSETAW, &PROGTTY);
/osnet-11/usr/src/lib/libc/port/gen/
H A Dtcdrain.c43 return (ioctl(fildes, TCSBRK, 1));
H A Dtcsetattr.c54 rval = ioctl(fildes, TCSETS, termios_p);
59 rval = ioctl(fildes, TCSETSW, termios_p);
64 rval = ioctl(fildes, TCSETSF, termios_p);
H A Ddirectio.c42 return (ioctl(fildes, _FIODIRECTIO, advice));
H A Dtcflow.c53 return (ioctl(fildes, TCXONC, action));
H A Dtcflush.c52 return (ioctl(fildes, TCFLSH, queue_selector));
H A Dtcgetattr.c46 return (ioctl(fildes, TCGETS, termios_p));
H A Dtcsendbreak.c41 * If duration is not 0, ioctl(fildes, TCSBRK, 0) is used also to
49 return (ioctl(fildes, TCSBRK, duration));
H A Disastream.c53 rval = ioctl(fd, I_CANPUT, 0);
H A Disatty.c50 if (ioctl(f, TCGETA, &tty) < 0) {
H A Dtcgetpgrp.c44 if (tcgetsid(fd) < 0 || ioctl(fd, TIOCGPGRP, &pgrp) < 0)
H A Dtcgetsid.c45 if ((ioctl(fd, TIOCGSID, &ttysid)) < 0 ||
H A Dtcsetpgrp.c44 return (ioctl(fd, TIOCSPGRP, &pgrp));
/osnet-11/usr/src/lib/libsocket/socket/
H A Dsockatmark.c43 if (ioctl(sock, SIOCATMARK, &val) == -1)
/osnet-11/usr/src/lib/libast/common/port/
H A Dastwinsize.c33 __STDPP__directive pragma pp:hide ioctl sleep
35 #define ioctl ______ioctl
40 #include <sys/ioctl.h>
63 __STDPP__directive pragma pp:nohide ioctl sleep
65 #undef ioctl
120 * tty ioctl() -- no cache
131 if (!ioctl(fd, op, tt)) return(0);
134 v = ioctl(fd, op, tt);
139 else if (!ioctl(fd, op, tt)) return(0);
/osnet-11/usr/src/lib/efcode/fcdriver/
H A DMakefile.com29 OBJECTS = ioctl.o misc.o dma.o property.o fcdebug.o phandle.o build_tree.o \
/osnet-11/usr/src/lib/libwrap/
H A Dfromhost.c51 if (ioctl(request->fd, I_FIND, "timod") > 0) {
/osnet-11/usr/src/lib/pyzfs/common/
H A Ddataset.py29 import zfs.ioctl namespace
48 from zfs.ioctl.get_proptable, which should match the
72 for name, t in zfs.ioctl.get_proptable().iteritems():
91 zfs.ioctl which actually interface with the kernel to manipulate
107 props is the property settings dict from zfs.ioctl.next_dataset.
128 props = zfs.ioctl.dataset_props(name)
163 zfs.ioctl.next_dataset(self.name, False, cookie)
179 d = zfs.ioctl.userspace_many(self.name, prop)
186 return zfs.ioctl.userspace_upgrade(self.name)
197 return zfs.ioctl
[all...]
/osnet-11/usr/src/lib/libshell/common/include/
H A Dterminal.h73 # define tcgetattr(fd,tty) ioctl(fd, TCGETS, tty)
75 # define tcsetattr(fd,action,tty) ioctl(fd, action, tty)
106 # define tcgetattr(fd,tty) ioctl(fd, TCGETA, tty)
107 # define tcsetattr(fd,action,tty) ioctl(fd, action, tty)
125 # define tcgetattr(fd,tty) ioctl(fd, TIOCGETP, tty)
126 # define tcsetattr(fd,action,tty) ioctl(fd, action, tty)
/osnet-11/usr/src/lib/libast/amd64/include/ast/
H A Dast_tty.h31 #define _sys_ioctl 1 /* #include <sys/ioctl.h> ok */
68 # define tcgetattr(fd,tty) ioctl(fd, TCGETS, tty)
70 # define tcsetattr(fd,action,tty) ioctl(fd, action, tty)
91 # define tcgetattr(fd,tty) ioctl(fd, TCGETA, tty)
92 # define tcsetattr(fd,action,tty) ioctl(fd, action, tty)
110 # define tcgetattr(fd,tty) ioctl(fd, TIOCGETP, tty)
111 # define tcsetattr(fd,action,tty) ioctl(fd, action, tty)

Completed in 86 milliseconds

1234567891011>>