Home
last modified time | relevance | path

Searched refs:pipe_t (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/lldb/include/lldb/Host/posix/
H A DPipePosix.h26 PipePosix(lldb::pipe_t read, lldb::pipe_t write);
48 lldb::pipe_t GetReadPipe() const override {
49 return lldb::pipe_t(GetReadFileDescriptor()); in GetReadPipe()
51 lldb::pipe_t GetWritePipe() const override { in GetReadPipe()
52 return lldb::pipe_t(GetWriteFileDescriptor()); in GetWritePipe()
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-types.h49 typedef void *pipe_t; // Host pipe type is HANDLE typedef
64 typedef int pipe_t; // Host pipe type
70 #define LLDB_INVALID_PIPE ((lldb::pipe_t)-1)
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DPipeBase.h43 virtual lldb::pipe_t GetReadPipe() const = 0;
44 virtual lldb::pipe_t GetWritePipe() const = 0;
/freebsd/contrib/llvm-project/lldb/tools/lldb-server/
H A Dlldb-gdbserver.cpp187 Status writeSocketIdToPipe(lldb::pipe_t unnamed_pipe, in writeSocketIdToPipe()
197 const char *const named_pipe_path, pipe_t unnamed_pipe, in ConnectToRemote()
339 lldb::pipe_t unnamed_pipe = LLDB_INVALID_PIPE; in main_gdbserver()
404 unnamed_pipe = (pipe_t)Arg; in main_gdbserver()
/freebsd/contrib/llvm-project/lldb/source/Host/posix/
H A DPipePosix.cpp59 PipePosix::PipePosix(lldb::pipe_t read, lldb::pipe_t write) in PipePosix()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp1021 pipe_t write = socket_pipe.GetWritePipe(); in StartDebugserverProcess()