Home
last modified time | relevance | path

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

/src/contrib/llvm-project/lldb/tools/lldb-server/
H A Dlldb-gdbserver.cpp176 Status writeSocketIdToPipe(const char *const named_pipe_path, in writeSocketIdToPipe() argument
180 auto error = port_name_pipe.OpenAsWriterWithTimeout(named_pipe_path, false, in writeSocketIdToPipe()
197 const char *const named_pipe_path, pipe_t unnamed_pipe, in ConnectToRemote() argument
231 [named_pipe_path, unnamed_pipe](llvm::StringRef socket_id) { in ConnectToRemote()
234 if (named_pipe_path && named_pipe_path[0]) { in ConnectToRemote()
235 Status error = writeSocketIdToPipe(named_pipe_path, socket_id); in ConnectToRemote()
239 named_pipe_path, error.AsCString()); in ConnectToRemote()
335 std::string named_pipe_path; in main_gdbserver() local
395 named_pipe_path = Args.getLastArgValue(OPT_named_pipe).str(); in main_gdbserver()
456 progname, subcommand, named_pipe_path.c_str(), in main_gdbserver()
/src/contrib/llvm-project/lldb/source/Host/posix/
H A DPipePosix.cpp125 llvm::SmallString<128> named_pipe_path; in CreateWithUniqueName() local
137 llvm::sys::fs::createUniquePath(tmpdir_file_spec.GetPath(), named_pipe_path, in CreateWithUniqueName()
139 error = CreateNew(named_pipe_path, child_process_inherit); in CreateWithUniqueName()
143 name = named_pipe_path; in CreateWithUniqueName()
/src/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp981 llvm::SmallString<128> named_pipe_path; in StartDebugserverProcess() local
1000 false, named_pipe_path); in StartDebugserverProcess()
1009 debugserver_args.AppendArgument(named_pipe_path); in StartDebugserverProcess()
1136 if (named_pipe_path.size() > 0) { in StartDebugserverProcess()
1137 error = socket_pipe.OpenAsReader(named_pipe_path, false); in StartDebugserverProcess()
1142 __FUNCTION__, named_pipe_path.c_str(), error.AsCString()); in StartDebugserverProcess()
1176 __FUNCTION__, named_pipe_path.c_str(), error.AsCString()); in StartDebugserverProcess()
1181 if (named_pipe_path.size() > 0) { in StartDebugserverProcess()
1182 const auto err = socket_pipe.Delete(named_pipe_path); in StartDebugserverProcess()
1186 __FUNCTION__, named_pipe_path.c_str(), err.AsCString()); in StartDebugserverProcess()