Searched refs:F_OK (Results 1 - 25 of 66) sorted by relevance

123

/freebsd-10-stable/contrib/ntp/lib/isc/win32/
H A Dunistd.h42 #ifndef F_OK
43 #define F_OK 0 macro
/freebsd-10-stable/contrib/groff/src/include/
H A Dposix.h61 #ifndef F_OK
62 #define F_OK 0 macro
/freebsd-10-stable/contrib/netbsd-tests/lib/libc/c063/
H A Dt_faccessat.c67 ATF_REQUIRE(faccessat(dfd, BASEFILE, F_OK, 0) == 0);
86 ATF_REQUIRE(faccessat(AT_FDCWD, BASEFILE, F_OK, 0) == 0);
98 ATF_REQUIRE(faccessat(AT_FDCWD, FILEERR, F_OK, 0) == -1);
112 ATF_REQUIRE(faccessat(dfd, FILEERR, F_OK, 0) == -1);
132 ATF_REQUIRE(faccessat(dfd, BASEFILE, F_OK, 0) == -1);
149 ATF_REQUIRE(faccessat(-1, FILE, F_OK, 0) == -1);
166 ATF_REQUIRE(faccessat(dfd, BASELINK, F_OK, 0) == -1);
172 ATF_REQUIRE(faccessat(dfd, BASELINK, F_OK, AT_SYMLINK_NOFOLLOW) == 0);
H A Dt_mkdirat.c64 ATF_REQUIRE(access(SDIR, F_OK) == 0);
79 ATF_REQUIRE(access(SDIR, F_OK) == 0);
H A Dt_mkfifoat.c63 ATF_REQUIRE(access(FIFO, F_OK) == 0);
79 ATF_REQUIRE(access(FIFO, F_OK) == 0);
H A Dt_mknodat.c82 ATF_REQUIRE(access(FILE, F_OK) == 0);
103 ATF_REQUIRE(access(FILE, F_OK) == 0);
H A Dt_fexecve.c86 ATF_REQUIRE(access("test", F_OK) == 0);
H A Dt_readlinkat.c126 ATF_REQUIRE(readlinkat(dfd, FILEERR, F_OK, 0) == -1);
/freebsd-10-stable/usr.sbin/pkg_install/lib/
H A Dpkgng.c59 if (access(pkgngpath, F_OK) == 0)
/freebsd-10-stable/contrib/ncurses/progs/
H A Dprogs.priv.h154 #ifndef F_OK
155 #define F_OK 0 /* Test for existence. */ macro
/freebsd-10-stable/contrib/tzcode/zic/
H A Dprivate.h85 #include "unistd.h" /* for F_OK and R_OK, and other POSIX goodness */
88 #ifndef F_OK
89 #define F_OK 0 macro
90 #endif /* !defined F_OK */
/freebsd-10-stable/contrib/groff/src/libs/libgroff/
H A Drelocate.cpp85 if (!access (name, F_OK)) {
114 if (!access(path, F_OK)) {
230 if (access(path, F_OK))
/freebsd-10-stable/contrib/tzcode/stdtime/
H A Dprivate.h125 #include "unistd.h" /* for F_OK, R_OK, and other POSIX goodness */
129 #ifndef F_OK
130 #define F_OK 0 macro
131 #endif /* !defined F_OK */
/freebsd-10-stable/cddl/compat/opensolaris/misc/
H A Dmkdirp.c88 if (access(str, F_OK) == 0)
/freebsd-10-stable/sys/sys/
H A Dunistd.h100 #define F_OK 0 /* test for existence of file */ macro
/freebsd-10-stable/contrib/opie/libopie/
H A Daccessfile.c167 i = access(opiealwayspath, F_OK);
/freebsd-10-stable/contrib/tcsh/
H A Dtw.spell.c153 if (access(p, F_OK) == 0) {
H A Dtc.os.h339 #ifndef F_OK
340 # define F_OK 0 macro
341 #endif /* F_OK */
/freebsd-10-stable/crypto/heimdal/lib/roken/
H A Droken-common.h117 #ifndef F_OK
118 #define F_OK 0 macro
/freebsd-10-stable/sbin/adjkerntz/
H A Dadjkerntz.c115 if (access(_PATH_CLOCK, F_OK) != 0)
149 wall_clock = (access(_PATH_CLOCK, F_OK) == 0);
/freebsd-10-stable/tools/regression/security/cap_test/
H A Dcap_test_capmode.c88 CHECK_CAPMODE(access, "/tmp/cap_capmode_access", F_OK);
/freebsd-10-stable/contrib/netbsd-tests/lib/libc/sys/
H A Dt_access.c50 static const int mode[4] = { R_OK, W_OK, X_OK, F_OK };
/freebsd-10-stable/contrib/libreadline/examples/rlfe/
H A Dos.h318 #ifndef F_OK
319 #define F_OK 0 macro
/freebsd-10-stable/usr.sbin/pmcannotate/
H A Dpmcannotate.c710 if (access(bin, R_OK | F_OK) == -1)
713 if (access(ofile, R_OK | F_OK) == -1)
716 if (kfile != NULL && access(kfile, R_OK | F_OK) == -1)
/freebsd-10-stable/usr.bin/csup/
H A Dmisc.c325 if (access(path, F_OK) != 0) {
345 if (access(path, F_OK) == 0) {

Completed in 194 milliseconds

123