Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DPath.cpp968 std::error_code create_directories(const Twine &Path, bool IgnoreExisting, in create_directories() argument
974 std::error_code EC = create_directory(P, IgnoreExisting, Perms); in create_directories()
986 if ((EC = create_directories(Parent, IgnoreExisting, Perms))) in create_directories()
989 return create_directory(P, IgnoreExisting, Perms); in create_directories()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DFileSystem.h303 bool IgnoreExisting = true,
312 std::error_code create_directory(const Twine &path, bool IgnoreExisting = true,
/freebsd/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/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc238 std::error_code create_directory(const Twine &path, bool IgnoreExisting,
249 if (LastError != ERROR_ALREADY_EXISTS || !IgnoreExisting)