Home
last modified time | relevance | path

Searched refs:ResultPath (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DPath.cpp171 SmallVectorImpl<char> &ResultPath, bool MakeAbsolute, in createUniqueEntity() argument
181 sys::fs::createUniquePath(Model, ResultPath, MakeAbsolute); in createUniqueEntity()
185 EC = sys::fs::openFileForReadWrite(Twine(ResultPath.begin()), ResultFD, in createUniqueEntity()
199 EC = sys::fs::access(ResultPath.begin(), sys::fs::AccessMode::Exist); in createUniqueEntity()
208 EC = sys::fs::create_directory(ResultPath.begin(), false); in createUniqueEntity()
796 void createUniquePath(const Twine &Model, SmallVectorImpl<char> &ResultPath, in createUniquePath() argument
811 ResultPath = ModelStorage; in createUniquePath()
812 ResultPath.push_back(0); in createUniquePath()
813 ResultPath.pop_back(); in createUniquePath()
818 ResultPath[i] = "0123456789abcdef"[sys::Process::GetRandomNumber() & 15]; in createUniquePath()
[all …]
H A DCaching.cpp47 SmallString<64> ResultPath; in localCache() local
49 Twine(EntryPath), sys::fs::OF_UpdateAtime, &ResultPath); in localCache()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DFileSystem.h808 SmallVectorImpl<char> &ResultPath,
835 SmallVectorImpl<char> &ResultPath,
842 SmallVectorImpl<char> &ResultPath,
899 SmallVectorImpl<char> &ResultPath,
906 SmallVectorImpl<char> &ResultPath,
910 createUniqueDirectory(const Twine &Prefix, SmallVectorImpl<char> &ResultPath);
921 SmallVectorImpl<char> &ResultPath);
933 SmallVectorImpl<char> &ResultPath);
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DHTMLDiagnostics.cpp345 SmallString<128> ResultPath; in ReportDiag() local
346 llvm::sys::path::append(ResultPath, Directory, FileName.str()); in ReportDiag()
347 if (std::error_code EC = llvm::sys::fs::make_absolute(ResultPath)) { in ReportDiag()
348 llvm::errs() << "warning: could not make '" << ResultPath in ReportDiag()
354 ResultPath, FD, llvm::sys::fs::CD_CreateNew, in ReportDiag()
372 llvm::sys::path::filename(ResultPath)); in ReportDiag()
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DThinLTOCodeGenerator.cpp397 SmallString<64> ResultPath; in tryLoadingBuffer() local
399 Twine(EntryPath), sys::fs::OF_UpdateAtime, &ResultPath); in tryLoadingBuffer()
/freebsd/contrib/llvm-project/llvm/lib/Passes/
H A DStandardInstrumentations.cpp810 SmallString<128> ResultPath; in fetchDumpFilename() local
811 sys::path::append(ResultPath, IRDumpDirectory, Filename); in fetchDumpFilename()
812 return std::string(ResultPath); in fetchDumpFilename()