Searched refs:target_file (Results 1 - 5 of 5) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DModuleCache.h63 const FileSpec &target_file);
/freebsd-12-stable/usr.bin/sdiff/
H A Dsdiff.c154 char *target_file; local
177 if (asprintf(&target_file, "%s/sdiff.XXXXXXXXXX", tmpdir) == -1)
179 if ((ofd = mkstemp(target_file)) == -1) {
180 warn("error opening %s", target_file);
189 warn("error writing to %s", target_file);
201 return (target_file);
204 unlink(target_file);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Target/
H A DModuleCache.cpp192 const FileSpec &target_file) {
196 JoinPath(module_spec_dir, target_file.GetFilename().AsCString());
207 root_dir_spec, hostname, target_file, module_file_path, true);
190 Put(const FileSpec &root_dir_spec, const char *hostname, const ModuleSpec &module_spec, const FileSpec &tmp_file, const FileSpec &target_file) argument
H A DPlatform.cpp1715 FileSpec target_file = GetWorkingDirectory();
1716 target_file.AppendPathComponent(local_file.GetFilename().AsCString());
1717 if (IsRemote() || local_file != target_file) {
1718 error = Install(local_file, target_file);
1722 return DoLoadImage(process, target_file, nullptr, error);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp2749 FileSpec target_file(pathname);
2750 FileSystem::Instance().Resolve(target_file);
2751 std::string basename(target_file.GetFilename().GetCString());
2764 std::error_code ec = status(target_file.GetPath(), st);
2778 if (target_file.GetDirectory().IsEmpty()) {
2783 std::string directory = target_file.GetDirectory().GetCString();
2804 ConstString extension = target_file.GetFileNameExtension();

Completed in 173 milliseconds