Home
last modified time | relevance | path

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

/coreutils/src/
Ddd.c1182 int old_flags = fcntl (STDOUT_FILENO, F_GETFL); in iwrite() local
1183 if (fcntl (STDOUT_FILENO, F_SETFL, old_flags & ~O_DIRECT) != 0 in iwrite()
2055 int old_flags = fcntl (fd, F_GETFL); in set_fd_flags() local
2056 int new_flags = old_flags | add_flags; in set_fd_flags()
2058 if (old_flags < 0) in set_fd_flags()
2060 else if (old_flags != new_flags) in set_fd_flags()
2082 if (ok && old_flags != new_flags in set_fd_flags()
Dtail.c1182 int old_flags = fcntl (fd, F_GETFL); in tail_forever() local
1183 int new_flags = old_flags | (blocking ? 0 : O_NONBLOCK); in tail_forever()
1184 if (old_flags < 0 in tail_forever()
1185 || (new_flags != old_flags in tail_forever()