/llvm-project/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.copy_file/ |
H A D | copy_file.pass.cpp | 68 assert(ErrorIs(ec, std::errc::file_exists)); in test_error_reporting() 69 ExceptionChecker Checker(file, file, std::errc::file_exists, "copy_file"); in test_error_reporting() 76 assert(ErrorIs(ec, std::errc::file_exists)); in test_error_reporting() 77 ExceptionChecker Checker(file, file, std::errc::file_exists, "copy_file"); in test_error_reporting()
|
/llvm-project/llvm/include/llvm/Support/ |
H A D | Errc.h | 48 file_exists = int(std::errc::file_exists), enumerator
|
H A D | GraphWriter.h | 390 if (EC == std::errc::file_exists) {
|
/llvm-project/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_directories/ |
H A D | create_directories.pass.cpp | 82 assert(ErrorIs(ec, std::errc::file_exists)); in create_directory_symlinks() 111 assert(ErrorIs(ec, std::errc::file_exists)); in dest_is_file()
|
/llvm-project/libcxx/src/filesystem/ |
H A D | error.h |
|
H A D | operations.cpp | 157 return err.report(errc::file_exists); in __copy() 410 return err.report(errc::file_exists); in __create_directory() 427 return err.report(errc::file_exists); in __create_directory() 487 return err.report(errc::file_exists); in __current_path() 517 if (mec != errc::file_exists) in __file_size() 541 if (mec != errc::file_exists)
|
/llvm-project/llvm/lib/Support/ |
H A D | ErrorHandling.cpp | 285 MAP_ERR_TO_COND(ERROR_ALREADY_EXISTS, file_exists); in mapWindowsError() 303 MAP_ERR_TO_COND(ERROR_FILE_EXISTS, file_exists); in mapWindowsError()
|
H A D | LockFileManager.cpp | 227 if (EC != errc::file_exists) { in LockFileManager()
|
H A D | raw_socket_stream.cpp | 128 std::make_error_code(std::errc::file_exists),
|
H A D | Path.cpp | 190 if (EC == errc::file_exists || EC == errc::permission_denied) in createUniqueEntity() 210 if (EC == errc::file_exists) in createUniqueEntity()
|
/llvm-project/libcxx/test/std/input.output/filesystems/class.filesystem_error/ |
H A D | filesystem_error.members.pass.cpp | 46 std::error_code ec = std::make_error_code(std::errc::file_exists); in test_constructors() 87 std::error_code ec = std::make_error_code(std::errc::file_exists); in test_signatures()
|
/llvm-project/libcxx/include/__system_error/ |
H A D | errc.h | 40 file_exists, // EEXIST 163 file_exists = EEXIST, in _LIBCPP_DECLARE_STRONG_ENUM()
|
/llvm-project/libcxx/test/std/diagnostics/syserr/ |
H A D | errc.pass.cpp | 41 static_assert(static_cast<int>(std::errc::file_exists) == EEXIST, ""); in main()
|
/llvm-project/llvm/utils/split-file/ |
H A D | split-file.cpp | 175 ec.value() != static_cast<int>(std::errc::file_exists)) in main()
|
/llvm-project/lldb/source/Symbol/ |
H A D | ObjectFile.cpp | 70 const bool file_exists = FileSystem::Instance().Exists(*file); in FindPlugin() local 74 if (file_exists && module_sp->GetObjectName()) { in FindPlugin()
|
/llvm-project/llvm/unittests/Support/ |
H A D | Path.cpp | 1004 errc::file_exists); in TEST_F() 1043 errc::file_exists); in TEST_F() 1082 ASSERT_EQ(fs::create_directory(Twine(LongDir), false), errc::file_exists); in TEST_F()
|
/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | HTMLDiagnostics.cpp | 365 if (EC != llvm::errc::file_exists) { in ReportDiag()
|
/llvm-project/llvm/lib/Support/Windows/ |
H A D | Path.inc | 542 if (EC == errc::file_exists || EC == errc::permission_denied) {
|