• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/tests/sys/fifo/

Lines Matching defs:writable

71  *   writable but not readable.
74 * writable.
864 poll_status(int fd, int *readable, int *writable, int *exception,
878 *writable = (fds[0].revents & POLLOUT) ? 1 : 0;
884 select_status(int fd, int *readable, int *writable, int *exception,
903 *writable = FD_ISSET(fd, &writefds) ? 1 : 0;
953 kqueue_status(int kqueue_fd, int fd, int *readable, int *writable,
970 *readable = *writable = *exception = 0;
978 *writable = 1;
1014 int readable, writable, exception;
1016 if (poll_status(fd, &readable, &writable, &exception, testname) < 0)
1019 if (readable != assert_readable || writable != assert_writable ||
1022 fdname, readable, writable, exception, conditionname);
1026 if (select_status(fd, &readable, &writable, &exception, testname) < 0)
1029 if (readable != assert_readable || writable != assert_writable ||
1032 fdname, readable, writable, exception, conditionname);
1036 if (kqueue_status(kqueue_fd, fd, &readable, &writable, &exception,
1040 if (readable != assert_readable || writable != assert_writable ||
1043 fdname, readable, writable, exception, conditionname);
1063 * kevent will correctly inform on readable/writable state following I/O.
1100 * since it will not be readable (no data in pipe), writable (it's
1155 * readable, and that the write end remains writable (small write).
1172 * the writer_fd should remain writable.
1198 * The writer_fd should remain writable.
1211 * the write end becomes un-writable as a result of a partial write that
1280 * Test that the writer_fd has been restored to writable state after
1326 * On first creation, the O_RDWR descriptor should be writable but
1337 * readable and writable.
1355 * simply being writable.