Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/include/lldb/Host/posix/
H A DPipePosix.h50 return lldb::pipe_t(GetReadFileDescriptor()); in GetReadPipe()
56 int GetReadFileDescriptor() const override;
/llvm-project-15.0.7/lldb/include/lldb/Host/
H A DPipeBase.h46 virtual int GetReadFileDescriptor() const = 0;
/llvm-project-15.0.7/lldb/source/Host/posix/
H A DPipePosix.cpp199 int PipePosix::GetReadFileDescriptor() const { return m_fds[READ]; } in GetReadFileDescriptor() function in PipePosix
253 const int fd = GetReadFileDescriptor(); in ReadWithTimeout()
H A DConnectionFileDescriptorPosix.cpp106 static_cast<void *>(this), m_pipe.GetReadFileDescriptor(), in OpenCommandPipe()
455 const int pipe_fd = m_pipe.GetReadFileDescriptor(); in BytesAvailable()
H A DProcessLauncherPosixFork.cpp286 int r = read(pipe.GetReadFileDescriptor(), buf, sizeof buf); in LaunchProcess()
/llvm-project-15.0.7/lldb/include/lldb/Host/windows/
H A DPipeWindows.h52 int GetReadFileDescriptor() const override;
/llvm-project-15.0.7/lldb/source/Host/windows/
H A DPipeWindows.cpp210 int PipeWindows::GetReadFileDescriptor() const { return m_read_fd; } in GetReadFileDescriptor() function in PipeWindows
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp1045 launch_info.AppendCloseFileAction(socket_pipe.GetReadFileDescriptor()); in StartDebugserverProcess()
/llvm-project-15.0.7/lldb/source/Target/
H A DProcess.cpp4361 const int pipe_read_fd = m_pipe.GetReadFileDescriptor(); in Run()