Home
last modified time | relevance | path

Searched refs:tcgetsid (Results 1 - 16 of 16) sorted by relevance

/third_party/musl/libc-test/src/functionalext/supplement/manual/termios/
H A Dtcgetsid.c33 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 Dtc.rs169 /// `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 Dmod.rs784 tcdrain, tcflow, tcflush, tcgetattr, tcgetpgrp, tcgetsid, tcgetwinsize, tcsendbreak, tcsetattr,
/third_party/musl/src/termios/
H A Dtcgetsid.c4 pid_t tcgetsid(int fd) in tcgetsid() function
/third_party/musl/porting/uniproton/kernel/include/
H A Dtermios.h35 pid_t tcgetsid (int);
/third_party/musl/porting/liteos_m_iccarm/kernel/include/
H A Dtermios.h35 pid_t tcgetsid (int);
/third_party/musl/porting/liteos_a/kernel/include/
H A Dtermios.h39 pid_t tcgetsid (int);
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/
H A Dtermios.h32 pid_t tcgetsid (int);
/third_party/musl/porting/liteos_m/kernel/include/
H A Dtermios.h35 pid_t tcgetsid (int);
/third_party/musl/libc-test/src/functionalext/supplement/manual/unistd/
H A Dtcgetpgrp.c49 spid = tcgetsid(STDIN_FILENO); in tcgetpgrp_0100()
H A Dtcsetpgrp.c49 spid = tcgetsid(STDIN_FILENO); in tcsetpgrp_0100()
/third_party/musl/include/
H A Dtermios.h39 pid_t tcgetsid (int);
/third_party/musl/libc-test/src/api/
H A Dtermios.c128 {pid_t(*p)(int) = tcgetsid;} in f()
/third_party/rust/crates/nix/src/sys/
H A Dtermios.rs1206 /// [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 Dmod.rs1381 pub fn tcgetsid(fd: ::c_int) -> ::pid_t; in tcgetsid() functions
/third_party/rust/crates/libc/src/fuchsia/
H A Dmod.rs3843 pub fn tcgetsid(fd: ::c_int) -> ::pid_t; in tcgetsid() functions

Completed in 18 milliseconds