Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DPath.cpp963 std::error_code create_directories(const Twine &Path, bool IgnoreExisting, in create_directories() argument
969 std::error_code EC = create_directory(P, IgnoreExisting, Perms); in create_directories()
981 if ((EC = create_directories(Parent, IgnoreExisting, Perms))) in create_directories()
984 return create_directory(P, IgnoreExisting, Perms); in create_directories()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DFileSystem.h306 bool IgnoreExisting = true,
315 std::error_code create_directory(const Twine &path, bool IgnoreExisting = true,
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/Unix/
H A DPath.inc392 std::error_code create_directory(const Twine &path, bool IgnoreExisting,
398 if (errno != EEXIST || !IgnoreExisting)
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc225 std::error_code create_directory(const Twine &path, bool IgnoreExisting,
236 if (LastError != ERROR_ALREADY_EXISTS || !IgnoreExisting)