Home
last modified time | relevance | path

Searched refs:create_directory (Results 1 – 21 of 21) sorted by relevance

/src/contrib/llvm-project/libcxx/include/__filesystem/
H A Doperations.h114 inline _LIBCPP_HIDE_FROM_ABI bool create_directory(const path& __p) { return __create_directory(__p… in create_directory() function
115 inline _LIBCPP_HIDE_FROM_ABI bool create_directory(const path& __p, error_code& __ec) noexcept { in create_directory() function
118 inline _LIBCPP_HIDE_FROM_ABI bool create_directory(const path& __p, const path& __attrs) { in create_directory() function
121 inline _LIBCPP_HIDE_FROM_ABI bool create_directory(const path& __p, const path& __attrs, error_code… in create_directory() function
/src/usr.sbin/autofs/
H A Dcommon.h73 void create_directory(const char *path);
H A Dautomount.c107 create_directory(fspath); in mount_autofs()
H A Dautomountd.c138 create_directory(path); in create_subtree()
H A Dcommon.c128 create_directory(const char *path) in create_directory() function
/src/contrib/llvm-project/lldb/source/Host/common/
H A DHostInfoBase.cpp275 if (llvm::sys::fs::create_directory(temp_file_spec.GetPath())) in ComputeProcessTempFileDirectory()
298 if (llvm::sys::fs::create_directory(temp_file_spec.GetPath())) in ComputeGlobalTempFileDirectory()
H A DEditline.cpp212 if (!llvm::sys::fs::create_directory(lldb_history_file)) { in GetHistoryFilePath()
/src/contrib/llvm-project/libcxx/include/
H A Dfilesystem398 bool create_directory(const path& p);
399 bool create_directory(const path& p, error_code& ec) noexcept;
401 bool create_directory(const path& p, const path& attributes);
402 bool create_directory(const path& p, const path& attributes,
/src/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdTsSymbolMap.inc10 SYMBOL(create_directory, std::experimental::filesystem::, <experimental/filesystem>)
H A DStdSymbolMap.inc3434 SYMBOL(create_directory, std::filesystem::, <filesystem>)
/src/contrib/llvm-project/llvm/include/llvm/Testing/Support/
H A DSupportHelpers.h133 EC = llvm::sys::fs::create_directory(Path);
/src/contrib/llvm-project/libcxx/modules/std/
H A Dfilesystem.inc69 using std::filesystem::create_directory;
/src/contrib/llvm-project/lldb/tools/lldb-server/
H A Dlldb-platform.cpp100 Status error(llvm::sys::fs::create_directory(temp_file_spec.GetPath())); in save_socket_id_to_file()
/src/contrib/llvm-project/clang/lib/ARCMigrate/
H A DFileRemapper.cpp112 if (fs::create_directory(outputDir)) in flushToDisk()
/src/contrib/llvm-project/llvm/lib/Support/
H A DPath.cpp209 EC = sys::fs::create_directory(ResultPath.begin(), false); in createUniqueEntity()
974 std::error_code EC = create_directory(P, IgnoreExisting, Perms); in create_directories()
989 return create_directory(P, IgnoreExisting, Perms); in create_directories()
/src/contrib/llvm-project/llvm/include/llvm/Support/
H A DFileSystem.h312 std::error_code create_directory(const Twine &path, bool IgnoreExisting = true,
/src/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerCommon.cpp857 Status error(llvm::sys::fs::create_directory(path, mode)); in Handle_qPlatform_mkdir()
/src/contrib/llvm-project/lldb/source/Target/
H A DPlatform.cpp601 return llvm::sys::fs::create_directory(file_spec.GetPath(), permissions); in MakeDirectory()
/src/contrib/llvm-project/llvm/lib/Support/Unix/
H A DPath.inc411 std::error_code create_directory(const Twine &path, bool IgnoreExisting,
/src/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc238 std::error_code create_directory(const Twine &path, bool IgnoreExisting,
/src/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DClang.cpp2500 auto Err = llvm::sys::fs::create_directory(Path, /*IgnoreExisting=*/true); in DumpCompilationDatabaseFragmentToDir()