Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerIOPosix.cpp126 void RenameFile(const std::string &OldPath, const std::string &NewPath) { in RenameFile() argument
127 rename(OldPath.c_str(), NewPath.c_str()); in RenameFile()
H A DFuzzerIOWindows.cpp233 void RenameFile(const std::string &OldPath, const std::string &NewPath) { in RenameFile() argument
234 rename(OldPath.c_str(), NewPath.c_str()); in RenameFile()
H A DFuzzerIO.h107 void RenameFile(const std::string &OldPath, const std::string &NewPath);
/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DToolChain.cpp697 SmallString<128> OldPath(getCompilerRTPath()); in getCompilerRT() local
698 llvm::sys::path::append(OldPath, CRTBasename); in getCompilerRT()
699 if (Path.empty() || getVFS().exists(OldPath)) in getCompilerRT()
700 return std::string(OldPath); in getCompilerRT()