Searched refs:fd_all (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/capsicum-test/ |
H A D | linux.cc | 1291 int fd_all = open(TmpFile("cap_lease"), O_CREAT|O_RDWR, 0644); in TEST() local 1292 EXPECT_OK(fd_all); in TEST() 1293 int fd_rw = dup(fd_all); in TEST() 1298 EXPECT_OK(cap_rights_limit(fd_all, &r_all)); in TEST() 1308 EXPECT_OK(fcntl(fd_all, F_SETLEASE, F_WRLCK)); in TEST() 1309 EXPECT_EQ(F_WRLCK, fcntl(fd_all, F_GETLEASE)); in TEST() 1311 EXPECT_OK(fcntl(fd_all, F_SETLEASE, F_UNLCK, 0)); in TEST() 1312 EXPECT_EQ(F_UNLCK, fcntl(fd_all, F_GETLEASE)); in TEST() 1314 close(fd_all); in TEST()
|