Home
last modified time | relevance | path

Searched refs:tmpdir_file_spec (Results 1 – 4 of 4) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Host/posix/
H A DPipePosix.cpp124 FileSpec tmpdir_file_spec = HostInfo::GetProcessTempDir(); in CreateWithUniqueName() local
125 if (!tmpdir_file_spec) in CreateWithUniqueName()
126 tmpdir_file_spec.AppendPathComponent("/tmp"); in CreateWithUniqueName()
127 tmpdir_file_spec.AppendPathComponent(pipe_spec); in CreateWithUniqueName()
134 llvm::sys::fs::createUniquePath(tmpdir_file_spec.GetPath(), named_pipe_path, in CreateWithUniqueName()
/freebsd-13.1/contrib/llvm-project/lldb/source/Expression/
H A DREPL.cpp54 FileSpec tmpdir_file_spec = HostInfo::GetProcessTempDir(); in GetSourcePath() local
55 if (tmpdir_file_spec) { in GetSourcePath()
56 tmpdir_file_spec.GetFilename() = file_basename; in GetSourcePath()
57 m_repl_source_path = tmpdir_file_spec.GetPath(); in GetSourcePath()
59 tmpdir_file_spec = FileSpec("/tmp"); in GetSourcePath()
60 tmpdir_file_spec.AppendPathComponent(file_basename.GetStringRef()); in GetSourcePath()
63 return tmpdir_file_spec.GetPath(); in GetSourcePath()
/freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/
H A DHost.cpp535 if (FileSpec tmpdir_file_spec = HostInfo::GetProcessTempDir()) { in RunShellCommand() local
536 tmpdir_file_spec.AppendPathComponent("lldb-shell-output.%%%%%%"); in RunShellCommand()
537 llvm::sys::fs::createUniqueFile(tmpdir_file_spec.GetPath(), in RunShellCommand()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp1063 if (FileSpec tmpdir_file_spec = HostInfo::GetProcessTempDir()) { in ParseInternal() local
1064 tmpdir_file_spec.AppendPathComponent("lldb-%%%%%%.expr"); in ParseInternal()
1065 std::string temp_source_path = tmpdir_file_spec.GetPath(); in ParseInternal()