Home
last modified time | relevance | path

Searched refs:O_NOCTTY (Results 1 – 25 of 31) sorted by relevance

12

/external/openssh/openbsd-compat/
Dbsd-openpty.c68 #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/
Dsshpty.c45 #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()
Dsshd.c128 #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/
Dfcntl.h28 #ifndef O_NOCTTY
29 #define O_NOCTTY 00000400 /* not fcntl */ macro
/external/strace/xlat/
Dopen_mode_flags.h10 #if defined(O_NOCTTY) || (defined(HAVE_DECL_O_NOCTTY) && HAVE_DECL_O_NOCTTY)
11 XLAT(O_NOCTTY),
Dopenmodessol.in9 { 0x800, "O_NOCTTY" },
Dopen_mode_flags.in3 O_NOCTTY
/external/bison/lib/
Dfcntl.in.h248 #ifndef O_NOCTTY
249 # define O_NOCTTY 0
/external/kernel-headers/original/uapi/asm-mips/asm/
Dfcntl.h19 #define O_NOCTTY 0x0800 /* not fcntl */ macro
/external/lldb/tools/debugserver/source/
DPseudoTerminal.cpp182 error = OpenFirstAvailableMaster (O_RDWR|O_NOCTTY); in Fork()
/external/bison/darwin-lib/
Dfcntl.h560 #ifndef O_NOCTTY
561 # define O_NOCTTY 0 macro
/external/bison/linux-lib/
Dfcntl.h560 #ifndef O_NOCTTY
561 # define O_NOCTTY 0 macro
/external/libnfc-nxp/Linux_x86/
DphDal4Nfc_i2c.c150 gI2cPortContext.nHandle = open(pConfig->deviceNode, O_RDWR | O_NOCTTY); in phDal4Nfc_i2c_open_and_configure()
DphDal4Nfc_uart.c171 gComPortContext.nHandle = open(pConfig->deviceNode, O_RDWR | O_NOCTTY); in phDal4Nfc_uart_open_and_configure()
/external/bison/m4/
Dfcntl-o.m444 O_CREAT, O_EXCL, O_NOCTTY, O_TRUNC, O_APPEND,
/external/libvncserver/x11vnc/
Dunixpw.c526 #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/
DMachProcess.cpp1874 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/
Dinit.c57 fd = open(p, O_RDWR | O_NONBLOCK | O_NOCTTY); in initialize_console()
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
Duserial_linux.c1051 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/
Dpexpect.py617 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/
DDriver.cpp1225 …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/
Dsys-linux.c2637 if ((sfd = open(pty_name, O_RDWR | O_NOCTTY)) < 0)
2651 sfd = open(pty_name, O_RDWR | O_NOCTTY, 0);
/external/lldb/source/Target/
DProcess.cpp471 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/
DScriptInterpreterPython.cpp319 …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/
DProcessMonitor.cpp879 if (!terminal.OpenFirstAvailableMaster(O_RDWR | O_NOCTTY, err_str, err_len)) in Launch()

12