Home
last modified time | relevance | path

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

/external/llvm-project/lldb/tools/debugserver/source/
DPseudoTerminal.cpp57 PseudoTerminal::Status PseudoTerminal::OpenFirstAvailablePrimary(int oflag) { in OpenFirstAvailablePrimary() function in PseudoTerminal
141 error = OpenFirstAvailablePrimary(O_RDWR | O_NOCTTY); in Fork()
DPseudoTerminal.h44 Status OpenFirstAvailablePrimary(int oflag);
/external/llvm-project/lldb/source/Host/common/
DPseudoTerminal.cpp62 llvm::Error PseudoTerminal::OpenFirstAvailablePrimary(int oflag) { in OpenFirstAvailablePrimary() function in PseudoTerminal
123 if (llvm::Error Err = OpenFirstAvailablePrimary(O_RDWR | O_CLOEXEC)) in Fork()
DProcessLaunchInfo.cpp221 if (llvm::Error Err = m_pty->OpenFirstAvailablePrimary(open_flags)) in SetUpPtyRedirection()
/external/llvm-project/lldb/include/lldb/Host/
DPseudoTerminal.h129 llvm::Error OpenFirstAvailablePrimary(int oflag);
/external/llvm-project/lldb/unittests/Host/
DMainLoopTest.cpp105 ASSERT_THAT_ERROR(term.OpenFirstAvailablePrimary(O_RDWR), llvm::Succeeded()); in TEST_F()
/external/llvm-project/lldb/unittests/Editline/
DEditlineTest.cpp102 EXPECT_THAT_ERROR(_pty.OpenFirstAvailablePrimary(O_RDWR), llvm::Succeeded()); in EditlineAdapter()
/external/llvm-project/lldb/tools/debugserver/source/MacOSX/
DMachProcess.mm3322 pty_error = pty.OpenFirstAvailablePrimary(O_RDWR | O_NOCTTY);
3674 pty.OpenFirstAvailablePrimary(O_RDWR | O_NOCTTY);
3876 pty.OpenFirstAvailablePrimary(O_RDWR | O_NOCTTY);
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemote.cpp821 !errorToBool(pty.OpenFirstAvailablePrimary(O_RDWR | O_NOCTTY))) { in DoLaunch()