Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/xz/src/xz/
H A Dfile_io.c82 static int stdout_flags; variable
880 stdout_flags = fcntl(STDOUT_FILENO, F_GETFL); in io_open_dest_real()
881 if (stdout_flags == -1) { in io_open_dest_real()
888 if ((stdout_flags & O_NONBLOCK) == 0 in io_open_dest_real()
890 stdout_flags | O_NONBLOCK) != -1) in io_open_dest_real()
998 if (stdout_flags & O_APPEND) { in io_open_dest_real()
1019 int flags = stdout_flags & ~O_APPEND; in io_open_dest_real()
1080 if (fcntl(STDOUT_FILENO, F_SETFL, stdout_flags) == -1) { in io_close_dest()