Home
last modified time | relevance | path

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

/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_nolibc.cpp28 bool CreateDir(const char *pathname) { return false; } in CreateDir() function
H A Dsanitizer_file.h85 bool CreateDir(const char *pathname);
H A Dsanitizer_file.cpp87 if (!DirExists(path) && !CreateDir(path)) { in RecursiveCreateParentDirs()
H A Dsanitizer_posix_libcdep.cpp154 bool CreateDir(const char *pathname) { return mkdir(pathname, 0755) == 0; } in CreateDir() function
H A Dsanitizer_win.cpp594 bool CreateDir(const char *pathname) { in CreateDir() function
/llvm-project-15.0.7/llvm/unittests/Support/
H A DPath.cpp968 TEST_F(FileSystemTest, CreateDir) { in TEST_F() argument