Home
last modified time | relevance | path

Searched refs:OpenFirstAvailablePrimary (Results 1 – 10 of 10) sorted by relevance

/llvm-project/lldb/tools/debugserver/source/
H A DPseudoTerminal.cpp57 PseudoTerminal::Status PseudoTerminal::OpenFirstAvailablePrimary(int oflag) { in OpenFirstAvailablePrimary() function in PseudoTerminal
141 error = OpenFirstAvailablePrimary(O_RDWR | O_NOCTTY); in Fork()
H A DPseudoTerminal.h44 Status OpenFirstAvailablePrimary(int oflag);
/llvm-project/lldb/source/Host/common/
H A DPseudoTerminal.cpp62 llvm::Error PseudoTerminal::OpenFirstAvailablePrimary(int oflag) { in CloseSecondaryFileDescriptor()
137 if (llvm::Error Err = OpenFirstAvailablePrimary(O_RDWR | O_CLOEXEC)) in GetSecondaryName()
66 llvm::Error PseudoTerminal::OpenFirstAvailablePrimary(int oflag) { OpenFirstAvailablePrimary() function in PseudoTerminal
H A DProcessLaunchInfo.cpp218 if (llvm::Error Err = m_pty->OpenFirstAvailablePrimary(open_flags)) in SetUpPtyRedirection()
/llvm-project/lldb/include/lldb/Host/
H A DPseudoTerminal.h129 llvm::Error OpenFirstAvailablePrimary(int oflag);
/llvm-project/lldb/unittests/Editline/
H A DEditlineTest.cpp102 EXPECT_THAT_ERROR(_pty.OpenFirstAvailablePrimary(O_RDWR), llvm::Succeeded()); in EditlineAdapter()
/llvm-project/lldb/unittests/Host/
H A DMainLoopTest.cpp280 ASSERT_THAT_ERROR(term.OpenFirstAvailablePrimary(O_RDWR), llvm::Succeeded());
/llvm-project/lldb/unittests/Host/posix/
H A DTerminalTest.cpp31 ASSERT_THAT_ERROR(m_pty.OpenFirstAvailablePrimary(O_RDWR | O_NOCTTY), in SetUp()
/llvm-project/lldb/tools/debugserver/source/MacOSX/
H A DMachProcess.mm3583 pty_error = pty.OpenFirstAvailablePrimary(O_RDWR | O_NOCTTY);
3945 pty.OpenFirstAvailablePrimary(O_RDWR | O_NOCTTY);
4160 pty.OpenFirstAvailablePrimary(O_RDWR | O_NOCTTY);
/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp698 !errorToBool(pty.OpenFirstAvailablePrimary(O_RDWR | O_NOCTTY))) { in DoLaunch()