Lines Matching refs:fds
43 static int fds[ARRAY_SIZE(tcases)];
51 TST_EXP_PASS(tst_syscall(__NR_fchmodat, fds[i], filenames[i], 0600),
55 TST_EXP_FAIL(tst_syscall(__NR_fchmodat, fds[i], filenames[i], 0600),
76 fds[0] = SAFE_OPEN(pathname, O_DIRECTORY);
77 fds[1] = fds[4] = fds[0];
82 fds[2] = SAFE_OPEN(testfile3, O_CREAT | O_RDWR, 0600);
83 fds[3] = 100;
84 fds[5] = AT_FDCWD;
93 if (fds[0] > 0)
94 close(fds[0]);
95 if (fds[2] > 0)
96 close(fds[2]);