Searched refs:EEXIST (Results 1 - 25 of 447) sorted by relevance

1234567891011>>

/freebsd-current/contrib/pjdfstest/tests/mknod/
H A D08.t5 desc="mknod returns EEXIST if the named file exists"
16 expect EEXIST mknod ${n0} b 0644 0 0
17 expect EEXIST mknod ${n0} c 0644 0 0
18 expect EEXIST mknod ${n0} f 0644 0 0
H A D11.t40 expect EEXIST mknod ${n0} ${type} 0777 3 4
49 expect EEXIST mknod ${n0} ${type} 0777 4000 4000
/freebsd-current/contrib/pjdfstest/tests/mkdir/
H A D10.t5 desc="mkdir returns EEXIST if the named file exists"
16 expect EEXIST mkdir ${n0} 0755
/freebsd-current/contrib/pjdfstest/tests/mkfifo/
H A D09.t5 desc="mkfifo returns EEXIST if the named file exists"
16 expect EEXIST mkfifo ${n0} 0644
/freebsd-current/contrib/pjdfstest/tests/symlink/
H A D08.t5 desc="symlink returns EEXIST if the name2 argument already exists"
16 expect EEXIST symlink test ${n0}
/freebsd-current/contrib/mandoc/
H A Dcompat_mkdtemp.c45 if (errno != EEXIST)
48 errno = EEXIST;
H A Dcompat_mkstemps.c58 if (errno != EEXIST)
61 errno = EEXIST;
/freebsd-current/contrib/netbsd-tests/fs/ptyfs/
H A Dt_nullpts.c30 if (errno != EEXIST)
46 if (errno != EEXIST)
50 if (errno != EEXIST)
82 if (errno != EEXIST)
86 if (errno != EEXIST)
H A Dt_ptyfs.c28 if (errno != EEXIST)
/freebsd-current/contrib/pjdfstest/tests/link/
H A D10.t5 desc="link returns EEXIST if the destination file does exist"
19 expect EEXIST link ${n0} ${n1}
/freebsd-current/contrib/pjdfstest/tests/open/
H A D22.t5 desc="open returns EEXIST when O_CREAT and O_EXCL were specified and the file exists"
16 expect EEXIST open ${n0} O_CREAT,O_EXCL 0644
/freebsd-current/contrib/tcsh/
H A Ddotlock.c84 else if (errno == EEXIST)
110 errno = EEXIST;
157 if (errno != EEXIST)
162 errno = EEXIST;
/freebsd-current/crypto/openssh/openbsd-compat/
H A Dmktemp.c106 if (fd != -1 || errno != EEXIST)
112 if (errno != EEXIST)
118 errno = EEXIST;
/freebsd-current/usr.bin/patch/
H A Dmkpath.c65 errno != EEXIST)) {
/freebsd-current/crypto/heimdal/lib/roken/
H A Dmkstemp.c65 if(fd >= 0 || errno != EEXIST)
/freebsd-current/sys/contrib/openzfs/module/zfs/
H A Dzcp_global.c47 {"EEXIST", EEXIST},
/freebsd-current/lib/libutil/
H A Dkld.c73 if (kldload(name) == -1 && errno != EEXIST)
/freebsd-current/sys/contrib/openzfs/lib/libspl/
H A Dmkdirp.c94 if (mkdir(str, mode) != 0 && errno != EEXIST) {
107 if (mkdir(str, mode) != 0 && errno != EEXIST) {
110 * exists (EEXIST), then str has the form
/freebsd-current/tests/sys/netgraph/
H A Dbasic.c136 ATF_CHECK_ERRNO(EEXIST, 1);
138 ATF_CHECK_ERRNO(EEXIST, 1);
/freebsd-current/sys/netinet/libalias/
H A Dalias_mod.c67 return (EEXIST);
136 return (EEXIST); /* Dll name conflict. */
/freebsd-current/usr.sbin/snapinfo/
H A Dsnapinfo.c156 return (EEXIST);
168 if (ret != EEXIST && ret != 0) {
/freebsd-current/bin/mkdir/
H A Dmkdir.c168 if (errno == EEXIST || errno == EISDIR) {
175 errno = EEXIST;
/freebsd-current/lib/libc/stdio/
H A Dmktemp.c156 if (errno != EEXIST)
161 if (errno != EEXIST)
176 return (0); /* yes - exit with EEXIST */
/freebsd-current/sbin/kldload/
H A Dkldload.c166 if (check_loaded != 0 && errno == EEXIST) {
173 case EEXIST:
/freebsd-current/contrib/llvm-project/libcxx/include/
H A Derrno.h297 # ifndef EEXIST
298 # define EEXIST 9955 macro

Completed in 164 milliseconds

1234567891011>>