Home
last modified time | relevance | path

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

/coreutils/src/
Dshred.c334 int fd_flags = fcntl (fd, F_GETFL); in direct_mode() local
335 if (0 < fd_flags) in direct_mode()
338 ? (fd_flags | O_DIRECT) in direct_mode()
339 : (fd_flags & ~O_DIRECT)); in direct_mode()
340 if (new_flags != fd_flags) in direct_mode()
959 int fd_flags = fcntl (fd, F_GETFL); in wipefd() local
961 if (fd_flags < 0) in wipefd()
966 if (fd_flags & O_APPEND) in wipefd()