/third_party/python/Lib/test/ |
D | test_ioctl.py | 17 r = fcntl.ioctl(tty, termios.TIOCGPGRP, " ") 35 r = fcntl.ioctl(tty, termios.TIOCGPGRP, " ") 52 r = fcntl.ioctl(tty, termios.TIOCGPGRP, buf, True)
|
/third_party/musl/src/unistd/ |
D | tcgetpgrp.c | 8 if (ioctl(fd, TIOCGPGRP, &pgrp) < 0) in tcgetpgrp()
|
/third_party/musl/porting/liteos_a/user/src/unistd/ |
D | tcgetpgrp.c | 10 if (ioctl(fd, TIOCGPGRP, &pgrp) < 0) in tcgetpgrp()
|
/third_party/musl/porting/uniproton/kernel/include/bits/ |
D | ioctl.h | 25 #define TIOCGPGRP 0x540F macro
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/bits/ |
D | ioctl.h | 25 #define TIOCGPGRP 0x540F macro
|
/third_party/musl/porting/liteos_m/kernel/include/bits/ |
D | ioctl.h | 25 #define TIOCGPGRP 0x540F macro
|
/third_party/musl/arch/generic/bits/ |
D | ioctl.h | 25 #define TIOCGPGRP 0x540F macro
|
/third_party/musl/arch/mips64/bits/ |
D | ioctl.h | 48 #define TIOCGPGRP _IOR('t', 119, int) macro
|
/third_party/musl/arch/mips/bits/ |
D | ioctl.h | 48 #define TIOCGPGRP _IOR('t', 119, int) macro
|
/third_party/musl/arch/mipsn32/bits/ |
D | ioctl.h | 48 #define TIOCGPGRP _IOR('t', 119, int) macro
|
/third_party/musl/arch/powerpc64/bits/ |
D | ioctl.h | 48 #define TIOCGPGRP _IOR('t', 119, int) macro
|
/third_party/musl/porting/liteos_a/kernel/include/bits/ |
D | ioctl.h | 42 #define TIOCGPGRP 0x540F macro
|
/third_party/musl/arch/powerpc/bits/ |
D | ioctl.h | 48 #define TIOCGPGRP _IOR('t', 119, int) macro
|
/third_party/musl/porting/liteos_a_newlib/kernel/include/bits/ |
D | ioctl.h | 42 #define TIOCGPGRP 0x540F macro
|
/third_party/musl/arch/sh/bits/ |
D | ioctl.h | 35 #define TIOCGPGRP _IOR('t', 119, int) macro
|
/third_party/python/Modules/ |
D | termios.c | 838 #ifdef TIOCGPGRP 839 {"TIOCGPGRP", TIOCGPGRP},
|
/third_party/python/Doc/library/ |
D | fcntl.rst | 114 >>> struct.unpack('h', fcntl.ioctl(0, termios.TIOCGPGRP, " "))[0] 117 >>> fcntl.ioctl(0, termios.TIOCGPGRP, buf, 1)
|