/freebsd/contrib/kyua/utils/process/ |
H A D | executor_test.cpp | 437 ATF_REQUIRE(!atf::utils::file_exists( in ATF_TEST_CASE_BODY() 439 ATF_REQUIRE(!atf::utils::file_exists( in ATF_TEST_CASE_BODY() 441 ATF_REQUIRE(!atf::utils::file_exists( in ATF_TEST_CASE_BODY() 546 ATF_REQUIRE(atf::utils::file_exists( in ATF_TEST_CASE_BODY() 551 ATF_REQUIRE(!atf::utils::file_exists(exit_handle.stdout_file().str())); in ATF_TEST_CASE_BODY() 552 ATF_REQUIRE(!atf::utils::file_exists(exit_handle.stderr_file().str())); in ATF_TEST_CASE_BODY() 553 ATF_REQUIRE(!atf::utils::file_exists(exit_handle.work_directory().str())); in ATF_TEST_CASE_BODY() 591 ATF_REQUIRE(atf::utils::file_exists( in ATF_TEST_CASE_BODY() 593 ATF_REQUIRE(atf::utils::file_exists( in ATF_TEST_CASE_BODY() 595 ATF_REQUIRE(atf::utils::file_exists( in ATF_TEST_CASE_BODY() [all …]
|
/freebsd/contrib/kyua/engine/ |
H A D | atf_test.cpp | 331 ATF_REQUIRE(!atf::utils::file_exists("cookie")); in ATF_TEST_CASE_BODY() 367 ATF_REQUIRE(!atf::utils::file_exists("cookie")); in ATF_TEST_CASE_BODY() 368 ATF_REQUIRE(atf::utils::file_exists("cookie.cleanup")); in ATF_TEST_CASE_BODY() 394 ATF_REQUIRE(!atf::utils::file_exists("cookie")); in ATF_TEST_CASE_BODY() 410 ATF_REQUIRE(!atf::utils::file_exists("cookie")); in ATF_TEST_CASE_BODY() 411 ATF_REQUIRE(atf::utils::file_exists("cookie.cleanup")); in ATF_TEST_CASE_BODY()
|
H A D | scheduler_test.cpp | 422 if (!atf::utils::file_exists(cookie.str())) { in compute_result() 430 if (!atf::utils::file_exists(stdout_path.str())) { in compute_result() 435 if (!atf::utils::file_exists(stderr_path.str())) { in compute_result() 686 ATF_REQUIRE(!atf::utils::file_exists( in ATF_TEST_CASE_BODY() 688 ATF_REQUIRE(!atf::utils::file_exists( in ATF_TEST_CASE_BODY() 690 ATF_REQUIRE(!atf::utils::file_exists( in ATF_TEST_CASE_BODY()
|
H A D | plain_test.cpp | 175 ATF_REQUIRE(!atf::utils::file_exists("cookie")); in ATF_TEST_CASE_BODY()
|
H A D | tap_test.cpp | 185 ATF_REQUIRE(!atf::utils::file_exists("cookie")); in ATF_TEST_CASE_BODY()
|
H A D | atf_helpers.cpp | 289 if (!atf::utils::file_exists("shared_cookie")) in ATF_TEST_CASE_CLEANUP()
|
/freebsd/contrib/atf/atf-c++/ |
H A D | utils_test.cpp | 209 ATF_TEST_CASE_WITHOUT_HEAD(file_exists); 210 ATF_TEST_CASE_BODY(file_exists) in ATF_TEST_CASE_BODY() argument 214 ATF_REQUIRE( atf::utils::file_exists("test.txt")); in ATF_TEST_CASE_BODY() 215 ATF_REQUIRE( atf::utils::file_exists("./test.txt")); in ATF_TEST_CASE_BODY() 216 ATF_REQUIRE(!atf::utils::file_exists("./test.tx")); in ATF_TEST_CASE_BODY() 217 ATF_REQUIRE(!atf::utils::file_exists("test.txt2")); in ATF_TEST_CASE_BODY() 490 ATF_ADD_TEST_CASE(tcs, file_exists); in ATF_INIT_TEST_CASES()
|
H A D | utils.hpp | 42 bool file_exists(const std::string&);
|
H A D | utils.cpp | 60 atf::utils::file_exists(const std::string& path) in file_exists() function in atf::utils
|
/freebsd/contrib/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) {
|
/freebsd/contrib/llvm-project/libcxx/src/filesystem/ |
H A D | error.h | 43 {ERROR_ALREADY_EXISTS, errc::file_exists}, in __win_err_to_errc() 61 {ERROR_FILE_EXISTS, errc::file_exists}, in __win_err_to_errc()
|
H A D | operations.cpp | 135 return err.report(errc::file_exists); in __copy() 290 return err.report(errc::file_exists); in __copy_file() 307 return err.report(errc::file_exists); in __copy_file() 367 return err.report(errc::file_exists); in __create_directories()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | ErrorHandling.cpp | 284 MAP_ERR_TO_COND(ERROR_ALREADY_EXISTS, file_exists); in mapWindowsError() 302 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 | 129 std::make_error_code(std::errc::file_exists), in getSocketFD()
|
H A D | Path.cpp | 191 if (EC == errc::file_exists || EC == errc::permission_denied) in createUniqueEntity() 211 if (EC == errc::file_exists) in createUniqueEntity()
|
/freebsd/contrib/atf/atf-c/ |
H A D | utils_test.c | 218 ATF_TC_WITHOUT_HEAD(file_exists); 219 ATF_TC_BODY(file_exists, tc) in ATF_TC_BODY() argument 545 ATF_TP_ADD_TC(tp, file_exists); in ATF_TP_ADD_TCS()
|
/freebsd/contrib/llvm-project/libcxx/include/__system_error/ |
H A D | errc.h | 164 file_exists = EEXIST, in _LIBCPP_DECLARE_STRONG_ENUM()
|
/freebsd/crypto/openssl/apps/ |
H A D | x509.c | 1094 int defaultfile = 0, file_exists; in x509_load_serial() local 1107 serial = load_serial(serialfile, &file_exists, create || defaultfile, NULL); in x509_load_serial() 1116 if (file_exists || create) in x509_load_serial()
|
/freebsd/contrib/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()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | HTMLDiagnostics.cpp | 363 if (EC != llvm::errc::file_exists) { in ReportDiag()
|
/freebsd/contrib/atf/ |
H A D | NEWS | 157 * Added the cat_file, compare_file, copy_file, create_file, file_exists,
|
/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/ |
H A D | Path.inc | 542 if (EC == errc::file_exists || EC == errc::permission_denied) {
|