reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/Support/FileSystem.h
  418 std::error_code copy_file(const Twine &From, const Twine &To);

References

lib/LTO/ThinLTOCodeGenerator.cpp
  876     Err = sys::fs::copy_file(CacheEntryPath, OutputPath);
lib/Support/FileCollector.cpp
  155     if (std::error_code EC = sys::fs::copy_file(entry.VPath, entry.RPath)) {
lib/Support/Path.cpp
 1184     RenameEC = sys::fs::copy_file(TmpName, Name);
tools/clang/lib/Driver/Driver.cpp
 1232     EC = fs::copy_file(CrashFilePath, ReproCrashFilename);
tools/clang/lib/Frontend/ModuleDependencyCollector.cpp
  224   if (std::error_code EC = fs::copy_file(CopyFrom, CacheDst))
tools/clang/tools/extra/clang-doc/HTMLGenerator.cpp
  973   std::error_code FileErr = llvm::sys::fs::copy_file(PathRead, PathWrite);
tools/dsymutil/DwarfLinker.cpp
 2533     if ((EC = sys::fs::copy_file(InterfaceFile, Path.str())))
tools/lldb/unittests/Target/ModuleCacheTest.cpp
  116         std::error_code ec = llvm::sys::fs::copy_file(
  157   ec = llvm::sys::fs::copy_file(s_test_executable, uuid_view.GetCString());