Home | History | Annotate | Download | only in faccessat

Lines Matching defs:fds

61 static int fds[TEST_CASES];
90 TEST(myfaccessat(fds[i], filenames[i], R_OK));
129 fds[0] = SAFE_OPEN(cleanup, pathname, O_DIRECTORY);
130 fds[1] = fds[4] = fds[0];
135 fds[2] = SAFE_OPEN(cleanup, testfile3, O_CREAT | O_RDWR, 0600);
137 fds[3] = 100;
138 fds[5] = AT_FDCWD;
149 if (fds[0] > 0)
150 close(fds[0]);
151 if (fds[2] > 0)
152 close(fds[2]);