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

/freebsd-10.3-release/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.3-release/sys/compat/linux/
H A Dlinux_file.c95 int bsd_flags, error; local
97 bsd_flags = 0;
100 bsd_flags |= O_WRONLY;
103 bsd_flags |= O_RDWR;
106 bsd_flags |= O_RDONLY;
109 bsd_flags |= O_NONBLOCK;
111 bsd_flags |= O_APPEND;
113 bsd_flags |= O_FSYNC;
115 bsd_flags |= O_NONBLOCK;
117 bsd_flags |
[all...]
/freebsd-10.3-release/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 107 milliseconds