Home
last modified time | relevance | path

Searched refs:oflags (Results 1 – 3 of 3) sorted by relevance

/coreutils/src/
Dtruncate.c351 int oflags = O_WRONLY | (no_create ? 0 : O_CREAT) | O_NONBLOCK; in main() local
356 int fd = open (fname, oflags, MODE_RW_UGO); in main()
Dsplit.c479 int oflags = O_WRONLY | O_CREAT | O_BINARY; in create() local
480 int fd = open (name, oflags | O_EXCL, MODE_RW_UGO); in create()
483 fd = open (name, oflags, MODE_RW_UGO); in create()
Dsort.c3859 int oflags = O_WRONLY | O_BINARY | O_CLOEXEC | O_CREAT; in check_output() local
3860 int outfd = open (outfile, oflags, MODE_RW_UGO); in check_output()