Searched refs:bsd_flags (Results 1 - 3 of 3) sorted by relevance

/freebsd-10-stable/sys/i386/ibcs2/
H A Dibcs2_xenix.c201 int error, bsd_flags; local
203 bsd_flags = 0;
205 bsd_flags |= R_OK;
207 bsd_flags |= W_OK;
209 bsd_flags |= X_OK;
212 error = kern_eaccess(td, path, UIO_SYSSPACE, bsd_flags);
/freebsd-10-stable/sys/compat/linux/
H A Dlinux_file.c94 int bsd_flags, error; local
96 bsd_flags = 0;
99 bsd_flags |= O_WRONLY;
102 bsd_flags |= O_RDWR;
105 bsd_flags |= O_RDONLY;
108 bsd_flags |= O_NONBLOCK;
110 bsd_flags |= O_APPEND;
112 bsd_flags |= O_FSYNC;
114 bsd_flags |= O_NONBLOCK;
116 bsd_flags |
[all...]
/freebsd-10-stable/sys/compat/svr4/
H A Dsvr4_fcntl.c388 int bsd_flags, error, retval; local
392 bsd_flags = svr4_to_bsd_flags(uap->flags);
393 error = kern_open(td, newpath, UIO_SYSSPACE, bsd_flags, uap->mode);
405 if (!(bsd_flags & O_NOCTTY) && SESS_LEADER(p) &&

Completed in 125 milliseconds