Home
last modified time | relevance | path

Searched refs:I_PUSH (Results 1 – 11 of 11) sorted by relevance

/third_party/python/Lib/
Dpty.py74 from fcntl import ioctl, I_PUSH
78 ioctl(result, I_PUSH, "ptem")
79 ioctl(result, I_PUSH, "ldterm")
/third_party/rust/crates/libc/src/unix/solarish/
Dcompat.rs94 if ::ioctl(fds, I_PUSH, PTEM.as_ptr()) < 0 || ::ioctl(fds, I_PUSH, LDTERM.as_ptr()) < 0 { in openpty()
Dmod.rs2405 pub const I_PUSH: ::c_int = STR | 0o2; constant
/third_party/rust/crates/nix/test/
Dtest_pty.rs122 use libc::{ioctl, I_FIND, I_PUSH}; in open_ptty_pair()
132 if unsafe { ioctl(slave_fd, I_PUSH, ptem.as_ptr()) } < 0 { in open_ptty_pair()
135 if unsafe { ioctl(slave_fd, I_PUSH, ldterm.as_ptr()) } < 0 { in open_ptty_pair()
/third_party/musl/porting/uniproton/kernel/include/
Dstropts.h11 #define I_PUSH (__SID | 2) macro
/third_party/musl/include/
Dstropts.h11 #define I_PUSH (__SID | 2) macro
/third_party/musl/ndk_musl_include/
Dstropts.h11 #define I_PUSH (__SID | 2) macro
/third_party/musl/porting/liteos_m_iccarm/kernel/include/
Dstropts.h11 #define I_PUSH (__SID | 2) macro
/third_party/musl/porting/liteos_m/kernel/include/
Dstropts.h11 #define I_PUSH (__SID | 2) macro
/third_party/python/Modules/
Dfcntlmodule.c614 if (PyModule_AddIntMacro(m, I_PUSH)) return -1; in all_ins()
Dposixmodule.c7299 ioctl(slave_fd, I_PUSH, "ptem"); /* push ptem */ in os_openpty_impl()
7300 ioctl(slave_fd, I_PUSH, "ldterm"); /* push ldterm */ in os_openpty_impl()
7302 ioctl(slave_fd, I_PUSH, "ttcompat"); /* push ttcompat */ in os_openpty_impl()