/third_party/musl/libc-test/src/functionalext/supplement/manual/unistd/ |
H A D | tcgetpgrp.c | 30 pid = tcgetpgrp(STDIN_FILENO); in tcgetpgrp_handler() 52 t_error("%s tcgetpgrp is not foreground\n", __func__); in tcgetpgrp_0100() 71 result = tcgetpgrp(-1); in tcgetpgrp_0200() 73 t_error("%s tcgetpgrp should failed, result is %d\n", __func__, result); in tcgetpgrp_0200()
|
H A D | tcsetpgrp.c | 30 pid = tcgetpgrp(STDIN_FILENO); in tcgetpgrp_handler() 52 t_error("%s tcgetpgrp is not foreground\n", __func__); in tcsetpgrp_0100()
|
/third_party/rust/crates/rustix/src/termios/ |
H A D | tc.rs | 43 /// `tcgetpgrp(fd)`—Get the terminal foreground process group. 51 /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799/functions/tcgetpgrp.html 52 /// [Linux]: https://man7.org/linux/man-pages/man3/tcgetpgrp.3.html 56 pub fn tcgetpgrp<Fd: AsFd>(fd: Fd) -> io::Result<Pid> { in tcgetpgrp() functions 57 backend::termios::syscalls::tcgetpgrp(fd.as_fd()) in tcgetpgrp()
|
H A D | mod.rs | 784 tcdrain, tcflow, tcflush, tcgetattr, tcgetpgrp, tcgetsid, tcgetwinsize, tcsendbreak, tcsetattr,
|
/third_party/musl/src/unistd/ |
H A D | tcgetpgrp.c | 6 pid_t tcgetpgrp(int fd) in tcgetpgrp() function
|
/third_party/musl/porting/liteos_a/user/src/unistd/ |
H A D | tcgetpgrp.c | 6 pid_t tcgetpgrp(int fd) in tcgetpgrp() function
|
/third_party/rust/crates/rustix/src/backend/libc/termios/ |
H A D | syscalls.rs | 31 pub(crate) fn tcgetpgrp(fd: BorrowedFd<'_>) -> io::Result<Pid> { 33 let pid = ret_pid_t(c::tcgetpgrp(borrowed_fd(fd)))?;
|
/third_party/rust/crates/rustix/src/backend/linux_raw/termios/ |
H A D | syscalls.rs | 45 pub(crate) fn tcgetpgrp(fd: BorrowedFd<'_>) -> io::Result<Pid> {
|
/third_party/musl/porting/liteos_a/user/include/ |
H A D | unistd.h | 128 pid_t tcgetpgrp(int);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | unistd.h | 103 pid_t tcgetpgrp(int);
|
/third_party/musl/porting/linux/user/include/ |
H A D | unistd.h | 130 pid_t tcgetpgrp(int);
|
/third_party/musl/porting/liteos_m/user/include/ |
H A D | unistd.h | 128 pid_t tcgetpgrp(int);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | unistd.h | 103 pid_t tcgetpgrp(int);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | unistd.h | 108 pid_t tcgetpgrp(int);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | unistd.h | 103 pid_t tcgetpgrp(int);
|
/third_party/musl/include/ |
H A D | unistd.h | 167 pid_t tcgetpgrp(int);
|
/third_party/musl/libc-test/src/api/ |
H A D | unistd.c | 322 {pid_t(*p)(int) = tcgetpgrp;} in f()
|
/third_party/rust/crates/rustix/examples/ |
H A D | stdio.rs | 51 println!(" - process group: {:?}", rustix::termios::tcgetpgrp(fd)?); in show()
|
/third_party/mksh/ |
H A D | jobs.c | 363 if ((ttypgrp = tcgetpgrp(tty_fd)) < 0) { 365 "j_init", "tcgetpgrp", 1193 (j->saved_ttypgrp = tcgetpgrp(tty_fd)) >= 0)
|
/third_party/rust/crates/nix/src/ |
H A D | unistd.rs | 365 /// [tcgetpgrp(3)](https://pubs.opengroup.org/onlinepubs/9699919799/functions/tcgetpgrp.html)). 370 pub fn tcgetpgrp(fd: c_int) -> Result<Pid> { in tcgetpgrp() functions 371 let res = unsafe { libc::tcgetpgrp(fd) }; in tcgetpgrp() 375 /// [tcgetpgrp(3)](https://pubs.opengroup.org/onlinepubs/9699919799/functions/tcsetpgrp.html)).
|
/third_party/rust/crates/libc/src/unix/ |
H A D | mod.rs | 937 pub fn tcgetpgrp(fd: ::c_int) -> pid_t; in tcgetpgrp() functions
|
/third_party/rust/crates/libc/src/fuchsia/ |
H A D | mod.rs | 3631 pub fn tcgetpgrp(fd: ::c_int) -> pid_t; in tcgetpgrp() functions
|
/third_party/python/Modules/ |
H A D | posixmodule.c | 9213 os.tcgetpgrp 9225 pid_t pgid = tcgetpgrp(fd); in os_tcgetpgrp_impl()
|