Home
last modified time | relevance | path

Searched refs:tio (Results 1 – 6 of 6) sorted by relevance

/illumos-gate/usr/src/lib/libldap5/include/ldap/
H A Dportable.h238 #define GETFLAGS( tio ) (tio).sg_flags argument
239 #define SETFLAGS( tio, flags ) (tio).sg_flags = (flags) argument
246 #define GETFLAGS( tio ) (tio).c_lflag argument
247 #define SETFLAGS( tio, flags ) (tio).c_lflag = (flags) argument
/illumos-gate/usr/src/ucbcmd/test/
H A Dtest.c34 static int tio(char *a, int f);
135 return (tio(nxtarg(0), 4)); in e3()
138 return (tio(nxtarg(0), 2)); in e3()
141 return (tio(nxtarg(0), 1)); in e3()
230 tio(char *a, int f) in tio() function
/illumos-gate/usr/src/uts/common/fs/hsfs/
H A Dhsfs_vnops.c2044 tio = fio; in hsched_invoke_strategy()
2051 prev = tio; in hsched_invoke_strategy()
2052 tio = nio; in hsched_invoke_strategy()
2075 hqueue->next = tio; in hsched_invoke_strategy()
2144 tio = nio; in hsched_invoke_strategy()
2160 tio = nio; in hsched_invoke_strategy()
2175 tio = nio; in hsched_invoke_strategy()
2183 nbuf = tio->bp; in hsched_invoke_strategy()
2184 io_done = tio->sema; in hsched_invoke_strategy()
2186 last = tio; in hsched_invoke_strategy()
[all …]
/illumos-gate/usr/src/cmd/lp/cmd/lpsched/
H A Dports.c87 struct termio tio; in open_dialup() local
133 ioctl(1, TCGETA, &tio); in open_dialup()
134 tios.c_cflag = tio.c_cflag; in open_dialup()
/illumos-gate/usr/src/cmd/mdb/common/kmdb/
H A Dkmdb_promif.c299 kmdb_prom_read(void *buf, size_t len, struct termios *tio) in kmdb_prom_read() argument
327 if (tio->c_iflag & ICRNL) { in kmdb_prom_read()
337 if (tio->c_lflag & ECHO) in kmdb_prom_read()
338 (void) kmdb_prom_write(buf, totread, tio); in kmdb_prom_read()
345 kmdb_prom_write(const void *bufp, size_t len, struct termios *tio) in kmdb_prom_write() argument
354 if (!(tio->c_oflag & ONLCR)) in kmdb_prom_write()
/illumos-gate/usr/src/cmd/rmformat/
H A Drmf_misc.c152 struct termios tio; in get_passwd() local
168 if (tcgetattr(fileno(in), &tio) < 0) { in get_passwd()
172 if (tio.c_lflag & ECHO) { in get_passwd()
173 tio.c_lflag &= ~ECHO; in get_passwd()
175 echo_off = tcsetattr(fileno(in), TCSAFLUSH, &tio) == 0; in get_passwd()
176 tio.c_lflag |= ECHO; in get_passwd()
222 (void) tcsetattr(fileno(in), TCSAFLUSH, &tio); in get_passwd()