HomeSort by: relevance | last modified time | path
    Searched refs:O_SEARCH (Results 1 - 3 of 3) sorted by relevancy

  /src/tests/lib/libc/c063/
t_o_search.c 52 * dholland 20130112: disable tests that require O_SEARCH semantics
53 * until a decision is reached about the semantics of O_SEARCH and a
56 #if defined(__FreeBSD__) || (O_MASK & O_SEARCH) != 0
66 #define FILE "dir/o_search"
67 #define BASEFILE "o_search"
103 atf_tc_set_md_var(tc, "descr", "See that root openat honours O_SEARCH");
115 ATF_REQUIRE((dfd = open(DIR, O_RDONLY|O_SEARCH, 0)) != -1);
135 atf_tc_set_md_var(tc, "descr", "See that openat honours O_SEARCH");
147 ATF_REQUIRE((dfd = open(DIR, O_RDONLY|O_SEARCH, 0)) != -1);
197 atf_tc_set_md_var(tc, "descr", "See that root fstatat honours O_SEARCH");
    [all...]
  /src/sys/sys/
fcntl.h 119 #define O_SEARCH 0x00800000 /* skip search permission checks */
  /src/sys/kern/
vfs_syscalls.c 1767 if (open_flags & O_SEARCH) {
1768 open_flags &= ~(int)O_SEARCH;
2178 if (oflags & O_SEARCH) {
2179 oflags &= ~(int)O_SEARCH;

Completed in 18 milliseconds