Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/lldb/tools/lldb-server/
Dlldb-gdbserver.cpp175 Status writeSocketIdToPipe(const char *const named_pipe_path, in writeSocketIdToPipe() argument
179 auto error = port_name_pipe.OpenAsWriterWithTimeout(named_pipe_path, false, in writeSocketIdToPipe()
196 const char *const named_pipe_path, pipe_t unnamed_pipe, in ConnectToRemote() argument
289 if (named_pipe_path && named_pipe_path[0]) { in ConnectToRemote()
290 error = writeSocketIdToPipe(named_pipe_path, socket_id); in ConnectToRemote()
293 named_pipe_path, error.AsCString()); in ConnectToRemote()
390 std::string named_pipe_path; in main_gdbserver() local
450 named_pipe_path = Args.getLastArgValue(OPT_named_pipe).str(); in main_gdbserver()
511 progname, subcommand, named_pipe_path.c_str(), in main_gdbserver()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Host/posix/
DPipePosix.cpp122 llvm::SmallString<128> named_pipe_path; in CreateWithUniqueName() local
134 llvm::sys::fs::createUniquePath(tmpdir_file_spec.GetPath(), named_pipe_path, in CreateWithUniqueName()
136 error = CreateNew(named_pipe_path, child_process_inherit); in CreateWithUniqueName()
140 name = named_pipe_path; in CreateWithUniqueName()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunication.cpp1003 llvm::SmallString<128> named_pipe_path; in StartDebugserverProcess() local
1022 false, named_pipe_path); in StartDebugserverProcess()
1031 debugserver_args.AppendArgument(named_pipe_path); in StartDebugserverProcess()
1156 if (named_pipe_path.size() > 0) { in StartDebugserverProcess()
1157 error = socket_pipe.OpenAsReader(named_pipe_path, false); in StartDebugserverProcess()
1162 __FUNCTION__, named_pipe_path.c_str(), error.AsCString()); in StartDebugserverProcess()
1194 __FUNCTION__, named_pipe_path.c_str(), error.AsCString()); in StartDebugserverProcess()
1199 if (named_pipe_path.size() > 0) { in StartDebugserverProcess()
1200 const auto err = socket_pipe.Delete(named_pipe_path); in StartDebugserverProcess()
1204 __FUNCTION__, named_pipe_path.c_str(), err.AsCString()); in StartDebugserverProcess()