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

123

/macosx-10.5.8/xnu-1228.15.4/bsd/sys/
H A Derrno.h103 #define EEXIST 17 /* File exists */ macro
/macosx-10.5.8/xnu-1228.15.4/tools/tests/xnu_quick_test/
H A Dshared_memory_tests.c102 if ( my_err != EEXIST ) {
H A Dmisc.c37 if ( errno != EEXIST ) {
H A Dmain.c477 if ( EEXIST != err ) {
/macosx-10.5.8/xnu-1228.15.4/bsd/net/
H A Dether_at_pr_module.c246 if (error && error != EEXIST) {
H A Dether_inet6_pr_module.c250 if (error && error != EEXIST) {
H A Dif_loop.c391 if (result && result != EEXIST) {
H A Dether_inet_pr_module.c531 if (error && error != EEXIST) {
H A Dkpi_protocol.c392 return EEXIST;
H A Dndrv.c370 if (result && result != EEXIST) {
901 result = EEXIST;
/macosx-10.5.8/xnu-1228.15.4/bsd/miscfs/synthfs/
H A Dsynthfs_vfsops.c426 DBG_VOP(("vn_mkdir: target already exists; returning EEXIST.\n"));
427 error = EEXIST;
458 error = EEXIST;
/macosx-10.5.8/xnu-1228.15.4/bsd/netat/
H A Dat.c569 error = EEXIST;
584 if (error == EEXIST) {
683 && (error == 0 || error == EEXIST)) {
/macosx-10.5.8/xnu-1228.15.4/bsd/miscfs/union/
H A Dunion_subr.c852 if (error == EEXIST) {
978 error = EEXIST;
1143 error = EEXIST;
1196 error = EEXIST;
1288 error = EEXIST;
/macosx-10.5.8/xnu-1228.15.4/bsd/hfs/
H A Dhfs_link.c209 if (retval != 0 && retval != EEXIST) {
213 } while ((retval == EEXIST) && (type == FILE_HARDLINKS));
493 error = EEXIST;
H A Dhfs_xattr.c561 return (EEXIST);
614 return (EEXIST);
728 result = EEXIST;
1075 if (result == EEXIST) {
1106 * EEXIST - If attribute record was found
1150 result = EEXIST;
/macosx-10.5.8/xnu-1228.15.4/bsd/nfs/
H A Dnfs4_vnops.c633 /* Kludge: Map EEXIST => 0 assuming that it is a reply to a retry. */
634 if (error == EEXIST)
1674 * Kludge: Map EEXIST => 0 assuming that you have a reply to a retry
1677 if ((create_error == EEXIST) || (!create_error && !newvp)) {
1682 error = EEXIST;
1870 * Kludge: Map EEXIST => 0 assuming that you have a reply to a retry
1873 if ((create_error == EEXIST) || (!create_error && !newvp)) {
1878 error = EEXIST;
2074 /* Kludge: Map EEXIST => 0 assuming that it is a reply to a retry. */
2075 if (error == EEXIST)
[all...]
/macosx-10.5.8/xnu-1228.15.4/bsd/vfs/
H A Dvfs_xattr.c217 error = EEXIST;
694 } else if ((error == EEXIST) && !makestream) {
950 } else if (error == EEXIST) {
1586 error = EEXIST;
1638 error = EEXIST;
1693 error = EEXIST;
H A Dvfs_vnops.c303 if ((error == EEXIST) && !(fmode & O_EXCL)) {
315 error = EEXIST;
/macosx-10.5.8/xnu-1228.15.4/bsd/netinet/
H A Din.c437 if (error != EEXIST) {
712 if ((error == 0) || (error == EEXIST)) {
1233 if (error == EEXIST)
H A Dip_encap.c384 error = EEXIST;
/macosx-10.5.8/xnu-1228.15.4/bsd/kern/
H A Dkpi_socketfilter.c507 return EEXIST;
H A Duipc_domain.c213 return(EEXIST);
H A Dkern_control.c735 return(EEXIST);
778 return(EEXIST);
H A Dposix_sem.c277 return(EEXIST);
451 error = EEXIST;
H A Dposix_shm.c284 return(EEXIST);
469 error = EEXIST;

Completed in 119 milliseconds

123