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.cpp172 SmallVectorImpl<char> &ResultPath, bool MakeAbsolute, in createUniqueEntity() argument
182 sys::fs::createUniquePath(Model, ResultPath, MakeAbsolute); in createUniqueEntity()
186 EC = sys::fs::openFileForReadWrite(Twine(ResultPath.begin()), ResultFD, in createUniqueEntity()
200 EC = sys::fs::access(ResultPath.begin(), sys::fs::AccessMode::Exist); in createUniqueEntity()
209 EC = sys::fs::create_directory(ResultPath.begin(), false); in createUniqueEntity()
797 void createUniquePath(const Twine &Model, SmallVectorImpl<char> &ResultPath, in createUniquePath() argument
812 ResultPath = ModelStorage; in createUniquePath()
813 ResultPath.push_back(0); in createUniquePath()
814 ResultPath.pop_back(); in createUniquePath()
819 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.h803 void createUniquePath(const Twine &Model, SmallVectorImpl<char> &ResultPath,
830 SmallVectorImpl<char> &ResultPath,
837 SmallVectorImpl<char> &ResultPath,
894 SmallVectorImpl<char> &ResultPath,
900 SmallVectorImpl<char> &ResultPath,
904 SmallVectorImpl<char> &ResultPath);
914 SmallVectorImpl<char> &ResultPath);
926 SmallVectorImpl<char> &ResultPath);
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DHTMLDiagnostics.cpp347 SmallString<128> ResultPath; in ReportDiag() local
348 llvm::sys::path::append(ResultPath, Directory, FileName.str()); in ReportDiag()
349 if (std::error_code EC = llvm::sys::fs::make_absolute(ResultPath)) { in ReportDiag()
350 llvm::errs() << "warning: could not make '" << ResultPath in ReportDiag()
356 ResultPath, FD, llvm::sys::fs::CD_CreateNew, in ReportDiag()
374 llvm::sys::path::filename(ResultPath)); in ReportDiag()
/freebsd/contrib/llvm-project/llvm/lib/Passes/
H A DStandardInstrumentations.cpp790 SmallString<128> ResultPath; in fetchDumpFilename() local
791 ResultPath += RootDirectory; in fetchDumpFilename()
799 sys::path::append(ResultPath, Filename); in fetchDumpFilename()
800 return std::string(ResultPath); in fetchDumpFilename()
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DThinLTOCodeGenerator.cpp405 SmallString<64> ResultPath; in tryLoadingBuffer() local
407 Twine(EntryPath), sys::fs::OF_UpdateAtime, &ResultPath); in tryLoadingBuffer()