Searched refs:I_PUSH (Results 1 – 11 of 11) sorted by relevance
/third_party/python/Lib/ |
D | pty.py | 74 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/ |
D | compat.rs | 94 if ::ioctl(fds, I_PUSH, PTEM.as_ptr()) < 0 || ::ioctl(fds, I_PUSH, LDTERM.as_ptr()) < 0 { in openpty()
|
D | mod.rs | 2405 pub const I_PUSH: ::c_int = STR | 0o2; constant
|
/third_party/rust/crates/nix/test/ |
D | test_pty.rs | 122 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/ |
D | stropts.h | 11 #define I_PUSH (__SID | 2) macro
|
/third_party/musl/include/ |
D | stropts.h | 11 #define I_PUSH (__SID | 2) macro
|
/third_party/musl/ndk_musl_include/ |
D | stropts.h | 11 #define I_PUSH (__SID | 2) macro
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
D | stropts.h | 11 #define I_PUSH (__SID | 2) macro
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | stropts.h | 11 #define I_PUSH (__SID | 2) macro
|
/third_party/python/Modules/ |
D | fcntlmodule.c | 614 if (PyModule_AddIntMacro(m, I_PUSH)) return -1; in all_ins()
|
D | posixmodule.c | 7299 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()
|