Symbol: TCGETA
headers/posix/termios.h
171
#define TCSETA (TCGETA + 1)
headers/posix/termios.h
172
#define TCSETAF (TCGETA + 2)
headers/posix/termios.h
173
#define TCSETAW (TCGETA + 3)
headers/posix/termios.h
175
#define TCSBRK (TCGETA + 5)
headers/posix/termios.h
176
#define TCFLSH (TCGETA + 6)
headers/posix/termios.h
177
#define TCXONC (TCGETA + 7)
headers/posix/termios.h
179
#define TCGETBITS (TCGETA + 9) /* same as TIOCMGET */
headers/posix/termios.h
180
#define TCSETDTR (TCGETA + 10)
headers/posix/termios.h
181
#define TCSETRTS (TCGETA + 11)
headers/posix/termios.h
182
#define TIOCGWINSZ (TCGETA + 12) /* pass in a struct winsize */
headers/posix/termios.h
183
#define TIOCSWINSZ (TCGETA + 13) /* pass in a struct winsize */
headers/posix/termios.h
185
#define TIOCGPGRP (TCGETA + 15) /* Gets the process group ID of the TTY device */
headers/posix/termios.h
186
#define TIOCSPGRP (TCGETA + 16) /* Sets the process group ID ('pgid' in BeOS) */
headers/posix/termios.h
187
#define TIOCSCTTY (TCGETA + 17) /* Become controlling TTY */
headers/posix/termios.h
188
#define TIOCMGET (TCGETA + 18) /* get line state */
headers/posix/termios.h
189
#define TIOCMSET (TCGETA + 19) /* does TCSETDTR/TCSETRTS */
headers/posix/termios.h
190
#define TIOCSBRK (TCGETA + 20) /* set txd pin */
headers/posix/termios.h
191
#define TIOCCBRK (TCGETA + 21) /* both are a frontend to TCSBRK */
headers/posix/termios.h
192
#define TIOCMBIS (TCGETA + 22) /* set bits in line state */
headers/posix/termios.h
193
#define TIOCMBIC (TCGETA + 23) /* clear bits in line state */
headers/posix/termios.h
194
#define TIOCGSID (TCGETA + 24) /* get session leader process group ID */
headers/posix/termios.h
195
#define TIOCOUTQ (TCGETA + 25) /* get output queue size */
headers/posix/termios.h
196
#define TIOCEXCL (TCGETA + 26) /* set exclusive use of tty */
headers/posix/termios.h
197
#define TIOCNXCL (TCGETA + 27) /* clear exclusive use of tty */
headers/private/drivers/tty.h
10
#define B_IOCTL_GET_TTY_INDEX (TCGETA + 32) /* param is int32* */
headers/private/drivers/tty.h
11
#define B_IOCTL_GRANT_TTY (TCGETA + 33) /* no param (cf. grantpt()) */
src/add-ons/kernel/drivers/common/dprintf.cpp
52
if (op == TCGETA) {
src/add-ons/kernel/generic/tty/tty.cpp
1699
case TCGETA:
src/add-ons/kernel/network/devices/dialup/dialup.cpp
269
if (ioctl(device->fd, TCGETA, &device->line_config,
src/add-ons/kernel/network/ppp/modem/ModemDevice.cpp
338
if (ioctl(fHandle, TCGETA, &options) != B_OK) {
src/bin/debug/strace/ioctl.cpp
115
#define TCWAITEVENT (TCGETA + 4)
src/bin/debug/strace/ioctl.cpp
116
#define TCQUERYCONNECTED (TCGETA + 8)
src/bin/debug/strace/ioctl.cpp
117
#define TCVTIME (TCGETA + 14)
src/bin/debug/strace/ioctl.cpp
118
IOCTL_INFO_ENTRY(TCGETA),
src/bin/network/telnet/sys_bsd.c
87
# define tcgetattr(f, t) ioctl(f, TCGETA, (char *)t)
src/bin/network/telnetd/sys_term.c
100
# define tcgetattr(f, t) ioctl(f, TCGETA, (char *)t)
src/bin/unzip/ttyio.c
143
# define GTTY(f,s) ioctl(f,TCGETA,(zvoid *)s)
src/system/libroot/posix/termios.c
20
return ioctl(fd, TCGETA, termios);
src/system/libroot/posix/unistd/terminal.c
25
return _kern_ioctl(fd, TCGETA, &termios, sizeof(struct termios)) == B_OK;