Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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-15.0.7/lldb/source/Host/common/
H A DPseudoTerminal.cpp65 llvm::Error PseudoTerminal::OpenFirstAvailablePrimary(int oflag) { in OpenFirstAvailablePrimary() function in PseudoTerminal
140 if (llvm::Error Err = OpenFirstAvailablePrimary(O_RDWR | O_CLOEXEC)) in Fork()
H A DProcessLaunchInfo.cpp222 if (llvm::Error Err = m_pty->OpenFirstAvailablePrimary(open_flags)) in SetUpPtyRedirection()
/llvm-project-15.0.7/lldb/include/lldb/Host/
H A DPseudoTerminal.h129 llvm::Error OpenFirstAvailablePrimary(int oflag);
/llvm-project-15.0.7/lldb/unittests/Editline/
H A DEditlineTest.cpp102 EXPECT_THAT_ERROR(_pty.OpenFirstAvailablePrimary(O_RDWR), llvm::Succeeded()); in EditlineAdapter()
/llvm-project-15.0.7/lldb/unittests/Host/
H A DMainLoopTest.cpp155 ASSERT_THAT_ERROR(term.OpenFirstAvailablePrimary(O_RDWR), llvm::Succeeded()); in TEST_F()
/llvm-project-15.0.7/lldb/unittests/Host/posix/
H A DTerminalTest.cpp28 ASSERT_THAT_ERROR(m_pty.OpenFirstAvailablePrimary(O_RDWR | O_NOCTTY), in SetUp()
/llvm-project-15.0.7/lldb/tools/debugserver/source/MacOSX/
H A DMachProcess.mm3382 pty_error = pty.OpenFirstAvailablePrimary(O_RDWR | O_NOCTTY);
3740 pty.OpenFirstAvailablePrimary(O_RDWR | O_NOCTTY);
3951 pty.OpenFirstAvailablePrimary(O_RDWR | O_NOCTTY);
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp795 !errorToBool(pty.OpenFirstAvailablePrimary(O_RDWR | O_NOCTTY))) { in DoLaunch()