Home
last modified time | relevance | path

Searched refs:open_flags (Results 1 – 6 of 6) sorted by relevance

/dragonfly/contrib/gdb-7/gdb/
HDinf-child.c150 int open_flags = 0; in inf_child_fileio_open_flags_to_host() local
156 open_flags |= O_CREAT; in inf_child_fileio_open_flags_to_host()
158 open_flags |= O_EXCL; in inf_child_fileio_open_flags_to_host()
160 open_flags |= O_TRUNC; in inf_child_fileio_open_flags_to_host()
162 open_flags |= O_APPEND; in inf_child_fileio_open_flags_to_host()
164 open_flags |= O_RDONLY; in inf_child_fileio_open_flags_to_host()
166 open_flags |= O_WRONLY; in inf_child_fileio_open_flags_to_host()
168 open_flags |= O_RDWR; in inf_child_fileio_open_flags_to_host()
172 open_flags |= O_BINARY; in inf_child_fileio_open_flags_to_host()
175 *open_flags_p = open_flags; in inf_child_fileio_open_flags_to_host()
/dragonfly/contrib/grep/lib/
HDopendirat.c38 int open_flags = (O_RDONLY | O_CLOEXEC | O_DIRECTORY | O_NOCTTY in opendirat() local
40 int new_fd = openat (dir_fd, dir, open_flags); in opendirat()
HDfts.c348 int open_flags = (O_SEARCH | O_CLOEXEC | O_DIRECTORY | O_NOCTTY | O_NONBLOCK in diropen() local
352 ? openat (sp->fts_cwd_fd, dir, open_flags) in diropen()
353 : open (dir, open_flags)); in diropen()
1772 int open_flags = O_SEARCH | O_CLOEXEC; in fd_ring_check() local
1773 int parent_fd = openat (cwd_fd, "..", open_flags); in fd_ring_check()
/dragonfly/contrib/lvm2/dist/lib/log/
HDlog.c69 int open_flags = append ? 0 : O_TRUNC; in init_log_direct() local
72 if (!dev_open_flags(&_log_dev, O_RDWR | O_CREAT | open_flags, 1, 0)) in init_log_direct()
/dragonfly/sys/vfs/fuse/
HDfuse_abi.h523 uint32_t open_flags; member
HDfuse_vnops.c196 if (foo->open_flags & FOPEN_DIRECT_IO) in fuse_vop_open()
198 else if (foo->open_flags & FOPEN_KEEP_CACHE) in fuse_vop_open()
200 else if (foo->open_flags & FOPEN_NONSEEKABLE) in fuse_vop_open()
202 else if (foo->open_flags & FOPEN_CACHE_DIR) in fuse_vop_open()