Home
last modified time | relevance | path

Searched refs:fd_evtonly (Results 1 – 1 of 1) sorted by relevance

/xnu-12377.81.4/tests/vfs/
H A Ddevfs_fdesc.c64 int fd_rdonly, fd_wronly, fd_evtonly, fd_evtonly_drw; variable
80 T_ASSERT_POSIX_SUCCESS(fd_evtonly = open(path, O_EVTONLY),
82 fd_evtonly);
108 T_EXPECT_POSIX_SUCCESS(docheck(fd_evtonly, R_OK), "Testing R_OK permissions");
109 T_EXPECT_POSIX_FAILURE(docheck(fd_evtonly, W_OK), EACCES, "Testing W_OK permissions");
110 …T_EXPECT_POSIX_FAILURE(docheck(fd_evtonly, R_OK | W_OK), EACCES, "Testing R_OK | W_OK permissions"…
111 T_EXPECT_POSIX_FAILURE(docheck(fd_evtonly, X_OK), EACCES, "Testing X_OK permissions");
122 close(fd_evtonly);