Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Host/posix/
H A DPipePosix.cpp127 FileSpec tmpdir_file_spec = HostInfo::GetProcessTempDir(); in CreateWithUniqueName() local
128 if (!tmpdir_file_spec) in CreateWithUniqueName()
129 tmpdir_file_spec.AppendPathComponent("/tmp"); in CreateWithUniqueName()
130 tmpdir_file_spec.AppendPathComponent(pipe_spec); in CreateWithUniqueName()
137 llvm::sys::fs::createUniquePath(tmpdir_file_spec.GetPath(), named_pipe_path, in CreateWithUniqueName()
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DREPL.cpp61 FileSpec tmpdir_file_spec = HostInfo::GetProcessTempDir(); in GetSourcePath() local
62 if (tmpdir_file_spec) { in GetSourcePath()
63 tmpdir_file_spec.SetFilename(file_basename); in GetSourcePath()
64 m_repl_source_path = tmpdir_file_spec.GetPath(); in GetSourcePath()
66 tmpdir_file_spec = FileSpec("/tmp"); in GetSourcePath()
67 tmpdir_file_spec.AppendPathComponent(file_basename); in GetSourcePath()
70 return tmpdir_file_spec.GetPath(); in GetSourcePath()
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DHost.cpp472 if (FileSpec tmpdir_file_spec = HostInfo::GetProcessTempDir()) { in RunShellCommand() local
473 tmpdir_file_spec.AppendPathComponent("lldb-shell-output.%%%%%%"); in RunShellCommand()
474 llvm::sys::fs::createUniqueFile(tmpdir_file_spec.GetPath(), in RunShellCommand()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp1040 if (FileSpec tmpdir_file_spec = HostInfo::GetProcessTempDir()) { in ParseInternal() local
1041 tmpdir_file_spec.AppendPathComponent("lldb-%%%%%%.expr"); in ParseInternal()
1042 std::string temp_source_path = tmpdir_file_spec.GetPath(); in ParseInternal()