Lines Matching defs:fds
18 static int fds[2];
23 SAFE_PIPE(fds);
25 TST_EXP_POSITIVE(fcntl(fds[1], F_GETPIPE_SZ));
27 TST_EXP_POSITIVE(fcntl(fds[1], F_SETPIPE_SZ, max_size_unpriv));
28 TST_EXP_POSITIVE(fcntl(fds[1], F_GETPIPE_SZ));
33 SAFE_CLOSE(fds[0]);
34 SAFE_CLOSE(fds[1]);
44 if (fds[0] > 0)
45 SAFE_CLOSE(fds[0]);
46 if (fds[1] > 0)
47 SAFE_CLOSE(fds[1]);