Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/lldb/source/Host/posix/
H A DPipePosix.cpp121 FileSpec tmpdir_file_spec = HostInfo::GetProcessTempDir(); in CreateWithUniqueName() local
122 if (!tmpdir_file_spec) in CreateWithUniqueName()
123 tmpdir_file_spec.AppendPathComponent("/tmp"); in CreateWithUniqueName()
124 tmpdir_file_spec.AppendPathComponent(pipe_spec); in CreateWithUniqueName()
131 llvm::sys::fs::createUniquePath(tmpdir_file_spec.GetPath(), named_pipe_path, in CreateWithUniqueName()
/openbsd/gnu/llvm/lldb/source/Expression/
H A DREPL.cpp59 FileSpec tmpdir_file_spec = HostInfo::GetProcessTempDir(); in GetSourcePath() local
60 if (tmpdir_file_spec) { in GetSourcePath()
61 tmpdir_file_spec.SetFilename(file_basename); in GetSourcePath()
62 m_repl_source_path = tmpdir_file_spec.GetPath(); in GetSourcePath()
64 tmpdir_file_spec = FileSpec("/tmp"); in GetSourcePath()
65 tmpdir_file_spec.AppendPathComponent(file_basename.GetStringRef()); in GetSourcePath()
68 return tmpdir_file_spec.GetPath(); in GetSourcePath()
/openbsd/gnu/llvm/lldb/source/Host/common/
H A DHost.cpp443 if (FileSpec tmpdir_file_spec = HostInfo::GetProcessTempDir()) { in RunShellCommand() local
444 tmpdir_file_spec.AppendPathComponent("lldb-shell-output.%%%%%%"); in RunShellCommand()
445 llvm::sys::fs::createUniqueFile(tmpdir_file_spec.GetPath(), in RunShellCommand()
/openbsd/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp1054 if (FileSpec tmpdir_file_spec = HostInfo::GetProcessTempDir()) { in ParseInternal() local
1055 tmpdir_file_spec.AppendPathComponent("lldb-%%%%%%.expr"); in ParseInternal()
1056 std::string temp_source_path = tmpdir_file_spec.GetPath(); in ParseInternal()