Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/posix/
H A DPipePosix.cpp131 FileSpec tmpdir_file_spec = HostInfo::GetProcessTempDir(); in CreateWithUniqueName() local
132 if (!tmpdir_file_spec) in CreateWithUniqueName()
133 tmpdir_file_spec.AppendPathComponent("/tmp"); in CreateWithUniqueName()
134 tmpdir_file_spec.AppendPathComponent(pipe_spec); in CreateWithUniqueName()
141 llvm::sys::fs::createUniqueFile(tmpdir_file_spec.GetPath(), in CreateWithUniqueName()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Expression/
H A DREPL.cpp60 FileSpec tmpdir_file_spec = HostInfo::GetProcessTempDir(); in GetSourcePath() local
61 if (tmpdir_file_spec) { in GetSourcePath()
62 tmpdir_file_spec.GetFilename().SetCString(file_basename.AsCString()); in GetSourcePath()
63 m_repl_source_path = tmpdir_file_spec.GetPath(); in GetSourcePath()
65 tmpdir_file_spec = FileSpec("/tmp"); in GetSourcePath()
66 tmpdir_file_spec.AppendPathComponent(file_basename.AsCString()); in GetSourcePath()
69 return tmpdir_file_spec.GetPath(); in GetSourcePath()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A DHost.cpp505 if (FileSpec tmpdir_file_spec = HostInfo::GetProcessTempDir()) { in RunShellCommand() local
506 tmpdir_file_spec.AppendPathComponent("lldb-shell-output.%%%%%%"); in RunShellCommand()
507 llvm::sys::fs::createUniqueFile(tmpdir_file_spec.GetPath(), in RunShellCommand()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp836 if (FileSpec tmpdir_file_spec = HostInfo::GetProcessTempDir()) { in ParseInternal() local
837 tmpdir_file_spec.AppendPathComponent("lldb-%%%%%%.expr"); in ParseInternal()
838 std::string temp_source_path = tmpdir_file_spec.GetPath(); in ParseInternal()