Home
last modified time | relevance | path

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

/dflybsd-src/contrib/xz/src/xz/
H A Dfile_io.c82 static int stdout_flags; variable
838 stdout_flags = fcntl(STDOUT_FILENO, F_GETFL); in io_open_dest_real()
839 if (stdout_flags == -1) { in io_open_dest_real()
846 if ((stdout_flags & O_NONBLOCK) == 0 in io_open_dest_real()
848 stdout_flags | O_NONBLOCK) != -1) in io_open_dest_real()
935 if (stdout_flags & O_APPEND) { in io_open_dest_real()
956 int flags = stdout_flags & ~O_APPEND; in io_open_dest_real()
1017 if (fcntl(STDOUT_FILENO, F_SETFL, stdout_flags) == -1) { in io_close_dest()