Home
last modified time | relevance | path

Searched refs:IgnoreExisting (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DPath.cpp969 std::error_code create_directories(const Twine &Path, bool IgnoreExisting, in create_directories() argument
975 std::error_code EC = create_directory(P, IgnoreExisting, Perms); in create_directories()
987 if ((EC = create_directories(Parent, IgnoreExisting, Perms))) in create_directories()
990 return create_directory(P, IgnoreExisting, Perms); in create_directories()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DFileSystem.h304 bool IgnoreExisting = true,
313 std::error_code create_directory(const Twine &path, bool IgnoreExisting = true,
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/Unix/
H A DPath.inc411 std::error_code create_directory(const Twine &path, bool IgnoreExisting,
417 if (errno != EEXIST || !IgnoreExisting)
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc236 std::error_code create_directory(const Twine &path, bool IgnoreExisting,
247 if (LastError != ERROR_ALREADY_EXISTS || !IgnoreExisting)