/external/openssh/openbsd-compat/ |
D | bsd-openpty.c | 68 #ifndef O_NOCTTY 69 #define O_NOCTTY 0 macro 87 if ((*aslave = open(slave, O_RDWR | O_NOCTTY)) == -1) { in openpty() 102 if ((ptm = open("/dev/ptmx", O_RDWR | O_NOCTTY)) == -1) in openpty() 119 if ((*aslave = open(pts, O_RDWR | O_NOCTTY)) == -1) { in openpty() 142 if ((*amaster = open("/dev/ptc", O_RDWR | O_NOCTTY)) == -1) in openpty() 146 if ((*aslave = open(ttname, O_RDWR | O_NOCTTY)) == -1) { in openpty() 166 if ((*amaster = open(ptbuf, O_RDWR|O_NOCTTY)) == -1) in openpty() 169 if ((*aslave = open(ttbuf, O_RDWR|O_NOCTTY)) == -1) { in openpty() 194 if ((*amaster = open(ptbuf, O_RDWR | O_NOCTTY)) == -1) { in openpty() [all …]
|
/external/openssh/ |
D | sshpty.c | 45 #ifndef O_NOCTTY 46 #define O_NOCTTY 0 macro 112 fd = open(tty, O_RDWR|O_NOCTTY); in pty_make_controlling_tty() 134 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY); in pty_make_controlling_tty() 147 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY); in pty_make_controlling_tty()
|
D | sshd.c | 128 #ifndef O_NOCTTY 129 #define O_NOCTTY 0 macro 1975 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
|
/external/kernel-headers/original/uapi/asm-generic/ |
D | fcntl.h | 28 #ifndef O_NOCTTY 29 #define O_NOCTTY 00000400 /* not fcntl */ macro
|
/external/strace/xlat/ |
D | open_mode_flags.h | 10 #if defined(O_NOCTTY) || (defined(HAVE_DECL_O_NOCTTY) && HAVE_DECL_O_NOCTTY) 11 XLAT(O_NOCTTY),
|
D | openmodessol.in | 9 { 0x800, "O_NOCTTY" },
|
D | open_mode_flags.in | 3 O_NOCTTY
|
/external/bison/lib/ |
D | fcntl.in.h | 248 #ifndef O_NOCTTY 249 # define O_NOCTTY 0
|
/external/kernel-headers/original/uapi/asm-mips/asm/ |
D | fcntl.h | 19 #define O_NOCTTY 0x0800 /* not fcntl */ macro
|
/external/lldb/tools/debugserver/source/ |
D | PseudoTerminal.cpp | 182 error = OpenFirstAvailableMaster (O_RDWR|O_NOCTTY); in Fork()
|
/external/bison/darwin-lib/ |
D | fcntl.h | 560 #ifndef O_NOCTTY 561 # define O_NOCTTY 0 macro
|
/external/bison/linux-lib/ |
D | fcntl.h | 560 #ifndef O_NOCTTY 561 # define O_NOCTTY 0 macro
|
/external/libnfc-nxp/Linux_x86/ |
D | phDal4Nfc_i2c.c | 150 gI2cPortContext.nHandle = open(pConfig->deviceNode, O_RDWR | O_NOCTTY); in phDal4Nfc_i2c_open_and_configure()
|
D | phDal4Nfc_uart.c | 171 gComPortContext.nHandle = open(pConfig->deviceNode, O_RDWR | O_NOCTTY); in phDal4Nfc_uart_open_and_configure()
|
/external/bison/m4/ |
D | fcntl-o.m4 | 44 O_CREAT, O_EXCL, O_NOCTTY, O_TRUNC, O_APPEND,
|
/external/libvncserver/x11vnc/ |
D | unixpw.c | 526 #ifdef O_NOCTTY in get_pty_ptmx() 527 fd = open(devs[i], O_RDWR|O_NOCTTY); in get_pty_ptmx() 597 #ifdef O_NOCTTY in get_pty_loop() 598 fd = open(master_str, O_RDWR|O_NOCTTY); in get_pty_loop()
|
/external/lldb/tools/debugserver/source/MacOSX/ |
D | MachProcess.cpp | 1874 pty_error = pty.OpenFirstAvailableMaster(O_RDWR|O_NOCTTY); in PosixSpawnChildForPTraceDebugging() 1892 O_RDONLY | O_NOCTTY, in PosixSpawnChildForPTraceDebugging() 1901 O_WRONLY | O_NOCTTY | O_CREAT, in PosixSpawnChildForPTraceDebugging() 1910 O_WRONLY | O_NOCTTY | O_CREAT, in PosixSpawnChildForPTraceDebugging() 2224 PseudoTerminal::Error pty_err = pty.OpenFirstAvailableMaster(O_RDWR|O_NOCTTY); in SBForkChildForPTraceDebugging()
|
/external/toybox/toys/pending/ |
D | init.c | 57 fd = open(p, O_RDWR | O_NONBLOCK | O_NOCTTY); in initialize_console()
|
/external/libnfc-nci/halimpl/bcm2079x/adaptation/ |
D | userial_linux.c | 1051 if ((linux_cb.sock = open((char*)device_name, O_RDWR | O_NOCTTY )) == -1) in USERIAL_Open() 1065 … if ((linux_cb.sock_power_control = open((char*)power_control_dev, O_RDWR | O_NOCTTY )) == -1) in USERIAL_Open()
|
/external/lldb/test/pexpect-2.4/ |
D | pexpect.py | 617 fd = os.open("/dev/tty", os.O_RDWR | os.O_NOCTTY); 628 fd = os.open("/dev/tty", os.O_RDWR | os.O_NOCTTY);
|
/external/lldb/tools/driver/ |
D | Driver.cpp | 1225 …if (m_editline_pty.OpenFirstAvailableMaster(O_RDWR|O_NOCTTY, error_str, sizeof(error_str)) == fals… in MainLoop() 1257 …if (editline_output_pty.OpenFirstAvailableMaster (O_RDWR|O_NOCTTY, error_str, sizeof (error_str)) … in MainLoop()
|
/external/ppp/pppd/ |
D | sys-linux.c | 2637 if ((sfd = open(pty_name, O_RDWR | O_NOCTTY)) < 0) 2651 sfd = open(pty_name, O_RDWR | O_NOCTTY, 0);
|
/external/lldb/source/Target/ |
D | Process.cpp | 471 if (m_pty.OpenFirstAvailableMaster (O_RDWR|O_NOCTTY, NULL, 0)) in FinalizeFileActions() 623 m_arg = O_NOCTTY | O_CREAT | O_RDWR; in Open() 625 m_arg = O_NOCTTY | O_RDONLY; in Open() 627 m_arg = O_NOCTTY | O_CREAT | O_WRONLY; in Open()
|
/external/lldb/source/Interpreter/ |
D | ScriptInterpreterPython.cpp | 319 …if (script_interpreter->m_embedded_thread_pty.OpenFirstAvailableMaster (O_RDWR|O_NOCTTY, error_str… in InputReaderCallback() 897 …if (script_interpreter->m_embedded_python_pty.OpenFirstAvailableMaster (O_RDWR|O_NOCTTY, error_str… in InputReaderCallback()
|
/external/lldb/source/Plugins/Process/FreeBSD/ |
D | ProcessMonitor.cpp | 879 if (!terminal.OpenFirstAvailableMaster(O_RDWR | O_NOCTTY, err_str, err_len)) in Launch()
|