Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/atf/atf-c++/
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()
489 ATF_ADD_TEST_CASE(tcs, file_exists); in ATF_INIT_TEST_CASES()
Dutils.hpp42 bool file_exists(const std::string&);
Dutils.cpp60 atf::utils::file_exists(const std::string& path) in file_exists() function in atf::utils
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
DErrc.h44 file_exists = int(std::errc::file_exists), enumerator
DGraphWriter.h338 if (EC == std::errc::file_exists) {
/freebsd-12-stable/contrib/gcc/
Dcollect2.h35 extern int file_exists (const char *);
Dtlink.c568 if (! file_exists (p)) in read_repo_files()
Dcollect2.c402 file_exists (const char *name) in file_exists() function
2574 if (file_exists (lib_buf)) in resolve_lib_name()
DFSFChangeLog.108115 (file_exists): New function.
DChangeLog-199811908 collect_wait, dump_file, file_exists): Add prototype.
DChangeLog-19999294 file_exists): Constify a char*.
/freebsd-12-stable/contrib/llvm-project/libcxx/include/
D__errc40 file_exists, // EEXIST
138 file_exists = EEXIST,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
DErrorHandling.cpp249 MAP_ERR_TO_COND(ERROR_ALREADY_EXISTS, file_exists); in mapWindowsError()
264 MAP_ERR_TO_COND(ERROR_FILE_EXISTS, file_exists); in mapWindowsError()
DLockFileManager.cpp226 if (EC != errc::file_exists) { in LockFileManager()
DPath.cpp188 if (EC == errc::file_exists || EC == errc::permission_denied) in createUniqueEntity()
208 if (EC == errc::file_exists) in createUniqueEntity()
/freebsd-12-stable/contrib/atf/atf-c/
Dutils_test.c218 ATF_TC_WITHOUT_HEAD(file_exists);
219 ATF_TC_BODY(file_exists, tc) in ATF_TC_BODY() argument
544 ATF_TP_ADD_TC(tp, file_exists); in ATF_TP_ADD_TCS()
/freebsd-12-stable/contrib/llvm-project/libcxx/src/filesystem/
Doperations.cpp413 {ERROR_ALREADY_EXISTS, errc::file_exists}, in __win_err_to_errc()
431 {ERROR_FILE_EXISTS, errc::file_exists}, in __win_err_to_errc()
766 return err.report(errc::file_exists); in __copy()
928 return err.report(errc::file_exists); in __copy_file()
946 return err.report(errc::file_exists); in __copy_file()
1008 return err.report(errc::file_exists); in __create_directories()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Symbol/
DObjectFile.cpp66 const bool file_exists = FileSystem::Instance().Exists(*file); in FindPlugin() local
70 if (file_exists && module_sp->GetObjectName()) { in FindPlugin()
/freebsd-12-stable/crypto/openssl/apps/
Dx509.c919 int defaultfile = 0, file_exists; in x509_load_serial() local
932 serial = load_serial(serialfile, &file_exists, create || defaultfile, NULL); in x509_load_serial()
941 if (file_exists || create) in x509_load_serial()
/freebsd-12-stable/contrib/llvm-project/lld/lib/Driver/
DDarwinLdOptions.td193 HelpText<"Only files specified by -file_exists are considered to exist. "
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
DHTMLDiagnostics.cpp301 if (EC && EC != llvm::errc::file_exists) { in ReportDiag()
/freebsd-12-stable/contrib/gdb/gdb/
Dhpread.c266 file_exists (char *filename) in file_exists() function
332 if (file_exists (PXDB_SVR4)) in hpread_call_pxdb()
/freebsd-12-stable/contrib/atf/
DNEWS139 * Added the cat_file, compare_file, copy_file, create_file, file_exists,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/Windows/
DPath.inc524 if (EC == errc::file_exists || EC == errc::permission_denied) {