Home
last modified time | relevance | path

Searched refs:named_pipe_path (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lldb/tools/lldb-server/
H A Dlldb-gdbserver.cpp184 Status writeSocketIdToPipe(const char *const named_pipe_path, in writeSocketIdToPipe() argument
188 if (llvm::Error err = port_name_pipe.OpenAsWriter(named_pipe_path, in writeSocketIdToPipe()
205 const char *const named_pipe_path, pipe_t unnamed_pipe, in ConnectToRemote() argument
249 [named_pipe_path, unnamed_pipe](llvm::StringRef socket_id) { in ConnectToRemote()
252 if (named_pipe_path && named_pipe_path[0]) { in ConnectToRemote()
253 Status error = writeSocketIdToPipe(named_pipe_path, socket_id); in ConnectToRemote()
257 named_pipe_path, error.AsCString()); in ConnectToRemote()
355 std::string named_pipe_path; in main_gdbserver() local
415 named_pipe_path = Args.getLastArgValue(OPT_named_pipe).str(); in main_gdbserver()
478 progname, subcommand, named_pipe_path.c_str(), in main_gdbserver()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp848 llvm::SmallString<128> named_pipe_path; in StartDebugserverProcess() local
872 named_pipe_path); in StartDebugserverProcess()
878 debugserver_args.AppendArgument(named_pipe_path); in StartDebugserverProcess()
971 if (named_pipe_path.size() > 0) { in StartDebugserverProcess()
972 error = socket_pipe.OpenAsReader(named_pipe_path); in StartDebugserverProcess()
975 named_pipe_path, error); in StartDebugserverProcess()
995 LLDB_LOG(log, "failed to synchronize on pipe {0}: {1}", named_pipe_path, in StartDebugserverProcess()
1000 if (named_pipe_path.size() > 0) { in StartDebugserverProcess()
1001 if (Status err = socket_pipe.Delete(named_pipe_path); err.Fail()) in StartDebugserverProcess()
1002 LLDB_LOG(log, "failed to delete pipe {0}: {1}", named_pipe_path, err); in StartDebugserverProcess()
/freebsd/contrib/llvm-project/lldb/source/Host/posix/
H A DPipePosix.cpp123 llvm::SmallString<128> named_pipe_path; in CreateWithUniqueName() local
135 llvm::sys::fs::createUniquePath(tmpdir_file_spec.GetPath(), named_pipe_path, in CreateWithUniqueName()
137 error = CreateNew(named_pipe_path); in CreateWithUniqueName()
141 name = named_pipe_path; in CreateWithUniqueName()