Searched refs:TempDir (Results 1 – 11 of 11) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/Testing/Support/ |
H A D | SupportHelpers.h | 113 class TempDir { 122 explicit TempDir(StringRef Name, bool Unique = false) { 140 ~TempDir() { in ~TempDir() 146 TempDir(const TempDir &) = delete; 147 TempDir &operator=(const TempDir &) = delete; 149 TempDir(TempDir &&) = default; 150 TempDir &operator=(TempDir &&) = default;
|
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
H A D | FuzzerFork.cpp | 92 std::string TempDir; member 112 std::string StopFile() { return DirPlusFile(TempDir, "STOP"); } in StopFile() 168 DirPlusFile(TempDir, std::to_string(JobId) + ".seeds"); in CreateNewJob() 172 Job->LogPath = DirPlusFile(TempDir, std::to_string(JobId) + ".log"); in CreateNewJob() 173 Job->CorpusDir = DirPlusFile(TempDir, "C" + std::to_string(JobId)); in CreateNewJob() 174 Job->FeaturesDir = DirPlusFile(TempDir, "F" + std::to_string(JobId)); in CreateNewJob() 175 Job->CFPath = DirPlusFile(TempDir, std::to_string(JobId) + ".merge"); in CreateNewJob() 272 Cmd.setOutputFile(DirPlusFile(TempDir, "dft.log")); in CollectDFT() 330 Env.TempDir = TempPath("FuzzWithFork", ".dir"); in FuzzWithFork() 331 Env.DFTDir = DirPlusFile(Env.TempDir, "DFT"); in FuzzWithFork() [all …]
|
/freebsd/contrib/googletest/googletest/include/gtest/internal/custom/ |
H A D | README.md | 11 * `GTEST_CUSTOM_TEMPDIR_FUNCTION_` - An override for `testing::TempDir()`. See 12 `testing::TempDir` for semantics and signature.
|
/freebsd/contrib/googletest/googletest/test/ |
H A D | gtest_dirs_test.cc | 77 EXPECT_TRUE(StartsWith(testing::TempDir(), temp_dir.DirName())); in TEST() 82 EXPECT_NE(testing::TempDir(), ""); in TEST()
|
H A D | googletest-filepath-test.cc | 489 FilePath(TempDir() + GetCurrentExecutableName().string() + in SetUp()
|
H A D | gtest_unittest.cc | 6276 testing::TempDir() + internal::GetCurrentExecutableName().string() + in SetUp()
|
/freebsd/contrib/llvm-project/llvm/lib/LTO/ |
H A D | ThinLTOCodeGenerator.cpp | 96 static void saveTempBitcode(const Module &TheModule, StringRef TempDir, in saveTempBitcode() argument 98 if (TempDir.empty()) in saveTempBitcode() 101 std::string SaveTempPath = (TempDir + llvm::Twine(count) + Suffix).str(); in saveTempBitcode()
|
/freebsd/contrib/googletest/googletest/src/ |
H A D | gtest-port.cc | 1106 name_template = TempDir(); in CapturedStream()
|
H A D | gtest.cc | 6904 std::string TempDir() { in TempDir() function
|
/freebsd/contrib/googletest/googletest/include/gtest/ |
H A D | gtest.h | 2230 GTEST_API_ std::string TempDir();
|
/freebsd/contrib/llvm-project/llvm/lib/Support/Unix/ |
H A D | Path.inc | 1371 static bool getDarwinConfDir(bool TempDir, SmallVectorImpl<char> &Result) { 1375 int ConfName = TempDir ? _CS_DARWIN_USER_TEMP_DIR : _CS_DARWIN_USER_CACHE_DIR;
|