Home
last modified time | relevance | path

Searched refs:file_exists (Results 1 – 24 of 24) sorted by relevance

/freebsd/contrib/kyua/utils/process/
H A Dexecutor_test.cpp437 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 Datf_test.cpp331 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 Dscheduler_test.cpp422 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 Dplain_test.cpp175 ATF_REQUIRE(!atf::utils::file_exists("cookie")); in ATF_TEST_CASE_BODY()
H A Dtap_test.cpp185 ATF_REQUIRE(!atf::utils::file_exists("cookie")); in ATF_TEST_CASE_BODY()
H A Datf_helpers.cpp289 if (!atf::utils::file_exists("shared_cookie")) in ATF_TEST_CASE_CLEANUP()
/freebsd/contrib/atf/atf-c++/
H A Dutils_test.cpp209 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 Dutils.hpp42 bool file_exists(const std::string&);
H A Dutils.cpp60 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 DErrc.h48 file_exists = int(std::errc::file_exists), enumerator
H A DGraphWriter.h390 if (EC == std::errc::file_exists) {
/freebsd/contrib/llvm-project/libcxx/src/filesystem/
H A Derror.h43 {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 Doperations.cpp135 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 DErrorHandling.cpp284 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 DLockFileManager.cpp227 if (EC != errc::file_exists) { in LockFileManager()
H A Draw_socket_stream.cpp129 std::make_error_code(std::errc::file_exists), in getSocketFD()
H A DPath.cpp191 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 Dutils_test.c218 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 Derrc.h164 file_exists = EEXIST, in _LIBCPP_DECLARE_STRONG_ENUM()
/freebsd/crypto/openssl/apps/
H A Dx509.c1094 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 DObjectFile.cpp70 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 DHTMLDiagnostics.cpp363 if (EC != llvm::errc::file_exists) { in ReportDiag()
/freebsd/contrib/atf/
H A DNEWS157 * Added the cat_file, compare_file, copy_file, create_file, file_exists,
/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc542 if (EC == errc::file_exists || EC == errc::permission_denied) {