| /src/sbin/fsck_lfs/ | 
| setup.c | 168 	int open_flags;  local in function:setup 188 		open_flags = O_RDONLY;
 190 		open_flags = O_RDWR;
 192 	if ((fsreadfd = open(dev, open_flags)) < 0) {
 
 | 
| /src/usr.sbin/pcictl/ | 
| pcictl.c | 63 	int open_flags;  member in struct:command 142 	pcifd = open(dvname, commands[i].open_flags);
 
 | 
| /src/sbin/dkctl/ | 
| dkctl.c | 79 	int open_flags;  member in struct:command 200 	fd = opendisk(dvname, command->open_flags, dvname_store,
 
 | 
| /src/lib/libperfuse/ | 
| fuse.h | 275 	uint32_t	open_flags; /* FUSE_FOPEN_ */  member in struct:fuse_open_out 
 | 
| ops.c | 1460 	if ((foo->open_flags & FUSE_FOPEN_DIRECT_IO) && (oflags != NULL)) 
 | 
| /src/sbin/newfs_udf/ | 
| udf_core.h | 362 extern int udf_opendisc(const char *device, int open_flags); 
 | 
| udf_core.c | 3330 udf_opendisc(const char *device, int open_flags) 3336 	if (open_flags & O_RDONLY) {
 3352 			if ((open_flags & O_CREAT) == 0) {
 
 | 
| /src/sys/kern/ | 
| vfs_syscalls.c | 1755 do_open(lwp_t *l, struct vnode *dvp, struct pathbuf *pb, int open_flags, 1767 	if (open_flags & O_SEARCH) {
 1768 		open_flags &= ~(int)O_SEARCH;
 1775 	if ((open_flags & O_EXEC) && (open_flags & O_ACCMODE))
 1778 	flags = FFLAGS(open_flags);
 1815 fd_open(const char *path, int open_flags, int open_mode, int *fd)
 1820 	oflags = FFLAGS(open_flags);
 1828 	error = do_open(curlwp, NULL, pb, open_flags, open_mode, fd);
 
 | 
| /src/sbin/fsck_udf/ | 
| main.c | 4189 	int open_flags;  local in function:checkfilesys 4212 	open_flags = rdonly ? O_RDONLY : O_RDWR;
 4213 	if (udf_opendisc(given_dev, open_flags)) {
 
 |