Home
last modified time | relevance | path

Searched refs:DirPath (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDataFlowTrace.cpp106 void DataFlowTrace::ReadCoverage(const std::string &DirPath) { in ReadCoverage() argument
108 GetSizedFilesFromDir(DirPath, &Files); in ReadCoverage()
161 bool DataFlowTrace::Init(const std::string &DirPath, std::string *FocusFunction, in Init() argument
163 if (DirPath.empty()) return false; in Init()
164 Printf("INFO: DataFlowTrace: reading from '%s'\n", DirPath.c_str()); in Init()
166 GetSizedFilesFromDir(DirPath, &Files); in Init()
176 std::ifstream IF(DirPlusFile(DirPath, kFunctionsTxt)); in Init()
192 ReadCoverage(DirPath); in Init()
249 int CollectDataFlow(const std::string &DFTBinary, const std::string &DirPath, in CollectDataFlow() argument
252 DFTBinary.c_str(), DirPath.c_str(), CorporaFiles.size()); in CollectDataFlow()
[all …]
H A DFuzzerDataFlowTrace.h41 int CollectDataFlow(const std::string &DFTBinary, const std::string &DirPath,
118 void ReadCoverage(const std::string &DirPath);
119 bool Init(const std::string &DirPath, std::string *FocusFunction,
H A DFuzzerIO.cpp131 std::string DirPlusFile(const std::string &DirPath, in DirPlusFile() argument
133 return DirPath + GetSeparator() + FileName; in DirPlusFile()
H A DFuzzerIO.h40 std::string DirPlusFile(const std::string &DirPath,
/freebsd/contrib/llvm-project/clang/lib/ExtractAPI/
H A DExtractAPIConsumer.cpp78 llvm::SmallString<32> DirPath(Dir.begin(), Dir.end()); in getRelativeIncludeName() local
79 FS.makeAbsolute(DirPath); in getRelativeIncludeName()
80 path::remove_dots(DirPath, true); in getRelativeIncludeName()
81 Dir = DirPath; in getRelativeIncludeName()
/freebsd/contrib/llvm-project/clang/lib/ARCMigrate/
H A DObjCMT.cpp1984 static std::vector<std::string> getAllowListFilenames(StringRef DirPath) { in getAllowListFilenames() argument
1989 if (DirPath.empty() || !is_directory(DirPath)) in getAllowListFilenames()
1993 directory_iterator DI = directory_iterator(DirPath, EC); in getAllowListFilenames()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DVirtualFileSystem.cpp1309 RedirectingFSDirRemapIterImpl(std::string DirPath, in RedirectingFSDirRemapIterImpl() argument
1311 : Dir(std::move(DirPath)), DirStyle(getExistingStyle(Dir)), in RedirectingFSDirRemapIterImpl()