my_select          47 maint/gnulib/tests/test-pselect.c   return test_function (my_select);
my_select          60 maint/gnulib/tests/test-select.h test (void (*fn) (select_fn), select_fn my_select, const char *msg)
my_select          65 maint/gnulib/tests/test-select.h   fn (my_select);
my_select         157 maint/gnulib/tests/test-select.h do_select (int fd, int ev, struct timeval *timeout, select_fn my_select)
my_select         171 maint/gnulib/tests/test-select.h   r = my_select (fd + 1, &rfds, &wfds, &xfds, timeout);
my_select         191 maint/gnulib/tests/test-select.h do_select_nowait (int fd, int ev, select_fn my_select)
my_select         196 maint/gnulib/tests/test-select.h   return do_select (fd, ev, &tv0, my_select);
my_select         200 maint/gnulib/tests/test-select.h do_select_wait (int fd, int ev, select_fn my_select)
my_select         202 maint/gnulib/tests/test-select.h   return do_select (fd, ev, NULL, my_select);
my_select         210 maint/gnulib/tests/test-select.h test_tty (select_fn my_select)
my_select         212 maint/gnulib/tests/test-select.h   if (do_select_nowait (0, SEL_IN, my_select) != 0)
my_select         214 maint/gnulib/tests/test-select.h   if (do_select_nowait (0, SEL_OUT, my_select) == 0)
my_select         217 maint/gnulib/tests/test-select.h   if (do_select_wait (0, SEL_IN, my_select) == 0)
my_select         221 maint/gnulib/tests/test-select.h   if (do_select_nowait (0, SEL_IN, my_select) != 0)
my_select         228 maint/gnulib/tests/test-select.h do_select_bad_nfd_nowait (int nfd, select_fn my_select)
my_select         234 maint/gnulib/tests/test-select.h   return my_select (nfd, NULL, NULL, NULL, &tv0);
my_select         238 maint/gnulib/tests/test-select.h test_bad_nfd (select_fn my_select)
my_select         240 maint/gnulib/tests/test-select.h   if (do_select_bad_nfd_nowait (-1, my_select) != -1 || errno != EINVAL)
my_select         246 maint/gnulib/tests/test-select.h   if (do_select_bad_nfd_nowait (FD_SETSIZE + 1, my_select) != -1
my_select         255 maint/gnulib/tests/test-select.h do_select_bad_fd (int fd, int ev, struct timeval *timeout, select_fn my_select)
my_select         269 maint/gnulib/tests/test-select.h   return my_select (fd + 1, &rfds, &wfds, &xfds, timeout);
my_select         276 maint/gnulib/tests/test-select.h do_select_bad_fd_nowait (int fd, int ev, select_fn my_select)
my_select         281 maint/gnulib/tests/test-select.h   return do_select_bad_fd (fd, ev, &tv0, my_select);
my_select         285 maint/gnulib/tests/test-select.h test_bad_fd (select_fn my_select)
my_select         306 maint/gnulib/tests/test-select.h   if (do_select_bad_fd_nowait (fd, SEL_IN, my_select) == 0 || errno != EBADF)
my_select         308 maint/gnulib/tests/test-select.h   if (do_select_bad_fd_nowait (fd, SEL_OUT, my_select) == 0 || errno != EBADF)
my_select         310 maint/gnulib/tests/test-select.h   if (do_select_bad_fd_nowait (fd, SEL_EXC, my_select) == 0 || errno != EBADF)
my_select         319 maint/gnulib/tests/test-select.h test_connect_first (select_fn my_select)
my_select         327 maint/gnulib/tests/test-select.h   if (do_select_nowait (s, SEL_IN | SEL_EXC, my_select) != 0)
my_select         332 maint/gnulib/tests/test-select.h   if (do_select_wait (s, SEL_IN | SEL_EXC, my_select) != SEL_IN)
my_select         334 maint/gnulib/tests/test-select.h   if (do_select_nowait (s, SEL_IN | SEL_EXC, my_select) != SEL_IN)
my_select         348 maint/gnulib/tests/test-select.h test_accept_first (select_fn my_select)
my_select         376 maint/gnulib/tests/test-select.h       if (do_select_nowait (c, SEL_OUT, my_select) != SEL_OUT)
my_select         380 maint/gnulib/tests/test-select.h       if (do_select_wait (c, SEL_IN, my_select) != SEL_IN)
my_select         393 maint/gnulib/tests/test-select.h test_pair (int rd, int wd, select_fn my_select)
my_select         396 maint/gnulib/tests/test-select.h   if (do_select_wait (wd, SEL_IN | SEL_OUT | SEL_EXC, my_select) != SEL_OUT)
my_select         398 maint/gnulib/tests/test-select.h   if (do_select_nowait (wd, SEL_IN | SEL_OUT | SEL_EXC, my_select) != SEL_OUT)
my_select         402 maint/gnulib/tests/test-select.h   if (do_select_wait (rd, SEL_IN, my_select) != SEL_IN)
my_select         404 maint/gnulib/tests/test-select.h   if (do_select_nowait (rd, SEL_IN, my_select) != SEL_IN)
my_select         414 maint/gnulib/tests/test-select.h test_socket_pair (select_fn my_select)
my_select         425 maint/gnulib/tests/test-select.h   test_pair (c1, c2, my_select);
my_select         435 maint/gnulib/tests/test-select.h test_pipe (select_fn my_select)
my_select         440 maint/gnulib/tests/test-select.h   test_pair (fd[0], fd[1], my_select);
my_select         449 maint/gnulib/tests/test-select.h test_function (select_fn my_select)
my_select         455 maint/gnulib/tests/test-select.h   test (test_tty, "TTY", my_select);
my_select         458 maint/gnulib/tests/test-select.h   result += test (test_bad_nfd, my_select, "Invalid nfd test");
my_select         459 maint/gnulib/tests/test-select.h   result += test (test_bad_fd, my_select, "Invalid fd test");
my_select         460 maint/gnulib/tests/test-select.h   result += test (test_connect_first, my_select, "Unconnected socket test");
my_select         461 maint/gnulib/tests/test-select.h   result += test (test_socket_pair, my_select, "Connected sockets test");
my_select         462 maint/gnulib/tests/test-select.h   result += test (test_accept_first, my_select, "General socket test with fork");
my_select         463 maint/gnulib/tests/test-select.h   result += test (test_pipe, my_select, "Pipe test");