Searched refs:tcgetsid (Results 1 - 16 of 16) sorted by relevance
/third_party/musl/libc-test/src/functionalext/supplement/manual/termios/ |
H A D | tcgetsid.c | 33 sid = tcgetsid(STDIN_FILENO); in tcgetsid_0100() 35 t_error("%s tcgetsid failed\n", __func__); in tcgetsid_0100() 51 sid = tcgetsid(-1); in tcgetsid_0200() 53 t_error("%s tcgetsid should failed, sid is %d", __func__, sid); in tcgetsid_0200()
|
/third_party/rust/crates/rustix/src/termios/ |
H A D | tc.rs | 169 /// `tcgetsid(fd)`—Return the session ID of the current session with `fd` as 176 /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799/functions/tcgetsid.html 177 /// [Linux]: https://man7.org/linux/man-pages/man3/tcgetsid.3.html 180 pub fn tcgetsid<Fd: AsFd>(fd: Fd) -> io::Result<Pid> { in tcgetsid() functions 181 backend::termios::syscalls::tcgetsid(fd.as_fd()) in tcgetsid()
|
H A D | mod.rs | 784 tcdrain, tcflow, tcflush, tcgetattr, tcgetpgrp, tcgetsid, tcgetwinsize, tcsendbreak, tcsetattr,
|
/third_party/musl/src/termios/ |
H A D | tcgetsid.c | 4 pid_t tcgetsid(int fd) in tcgetsid() function
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | termios.h | 35 pid_t tcgetsid (int);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | termios.h | 35 pid_t tcgetsid (int);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | termios.h | 39 pid_t tcgetsid (int);
|
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/ |
H A D | termios.h | 32 pid_t tcgetsid (int);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | termios.h | 35 pid_t tcgetsid (int);
|
/third_party/musl/libc-test/src/functionalext/supplement/manual/unistd/ |
H A D | tcgetpgrp.c | 49 spid = tcgetsid(STDIN_FILENO); in tcgetpgrp_0100()
|
H A D | tcsetpgrp.c | 49 spid = tcgetsid(STDIN_FILENO); in tcsetpgrp_0100()
|
/third_party/musl/include/ |
H A D | termios.h | 39 pid_t tcgetsid (int);
|
/third_party/musl/libc-test/src/api/ |
H A D | termios.c | 128 {pid_t(*p)(int) = tcgetsid;} in f()
|
/third_party/rust/crates/nix/src/sys/ |
H A D | termios.rs | 1206 /// [tcgetsid(3)](https://pubs.opengroup.org/onlinepubs/9699919799/functions/tcgetsid.html)). 1207 pub fn tcgetsid(fd: RawFd) -> Result<Pid> { in tcgetsid() functions 1208 let res = unsafe { libc::tcgetsid(fd) }; in tcgetsid()
|
/third_party/rust/crates/libc/src/unix/ |
H A D | mod.rs | 1381 pub fn tcgetsid(fd: ::c_int) -> ::pid_t; in tcgetsid() functions
|
/third_party/rust/crates/libc/src/fuchsia/ |
H A D | mod.rs | 3843 pub fn tcgetsid(fd: ::c_int) -> ::pid_t; in tcgetsid() functions
|
Completed in 18 milliseconds