Lines Matching refs:fds
59 int fds[2]; in ATF_TC_BODY() local
62 RL(pipe(fds)); in ATF_TC_BODY()
64 RL(close(fds[0])); in ATF_TC_BODY()
66 EV_SET(&event[0], fds[1], EVFILT_WRITE, EV_ADD|EV_ENABLE, 0, 0, 0); in ATF_TC_BODY()
83 int fds[2]; in ATF_TC_BODY() local
88 RL(pipe(fds)); in ATF_TC_BODY()
91 EV_SET(&event[0], fds[1], EVFILT_WRITE, EV_ADD|EV_ENABLE, 0, 0, 0); in ATF_TC_BODY()
97 int sz = read(fds[0], buffer, 128); in ATF_TC_BODY()
108 RL(n = write(fds[1], "foo", 3)); in ATF_TC_BODY()
109 RL(close(fds[1])); in ATF_TC_BODY()
124 int fds[2]; in ATF_TC_BODY() local
127 RL(pipe(fds)); in ATF_TC_BODY()
130 EV_SET(&event[0], fds[1], EVFILT_WRITE, EV_ADD|EV_ENABLE, 0, 0, 0); in ATF_TC_BODY()
135 RL(close(fds[0])); in ATF_TC_BODY()
136 RL(close(fds[1])); in ATF_TC_BODY()