Home
last modified time | relevance | path

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

/glibc-2.36/sysdeps/posix/
Deuidaccess.c68 # define R_OK 4 macro
71 #if !defined S_IROTH && defined R_OK
72 # define S_IROTH R_OK
146 mode &= (X_OK | W_OK | R_OK); /* Clear any bogus bits. */ in euidaccess()
147 #if R_OK != S_IROTH || W_OK != S_IWOTH || X_OK != S_IXOTH in euidaccess()
/glibc-2.36/sysdeps/unix/sysv/linux/
Dfaccessat.c46 mode &= (X_OK | W_OK | R_OK); /* Clear any bogus bits. */ in __faccessat()
47 # if R_OK != S_IROTH || W_OK != S_IWOTH || X_OK != S_IXOTH in __faccessat()
/glibc-2.36/scripts/
Dcheck-wrapper-headers.py76 is_nonsysdep_header = os.access(header, os.R_OK)
83 if not os.access(include_path, os.R_OK):
/glibc-2.36/io/
Dfcntl.h125 # ifndef R_OK /* Verbatim from <unistd.h>. Ugh. */
128 # define R_OK 4 /* Test for read permission. */ macro
Daccess.c33 if (file == NULL || (type & ~(R_OK|W_OK|X_OK|F_OK)) != 0) in __access()
Deuidaccess.c26 if (file == NULL || (type & ~(R_OK|W_OK|X_OK|F_OK)) != 0) in __euidaccess()
Dfaccessat.c29 || (type & ~(R_OK|W_OK|X_OK|F_OK)) != 0) in faccessat()
Dtst-faccessat.c145 if (faccessat (dir_fd, "some-file", R_OK, AT_EACCESS)) in do_test()
/glibc-2.36/support/
Dsupport_need_proc.c32 if (access ("/proc/self/maps", R_OK)) in support_need_proc()
/glibc-2.36/nss/
Dbug-erange.c40 if (access ("/etc/resolv.conf", R_OK)) in main()
/glibc-2.36/timezone/
Dprivate.h217 #ifndef R_OK
218 #define R_OK 4 macro
/glibc-2.36/sysdeps/mach/hurd/
Dfaccessat.c195 if (type & R_OK) in __faccessat_common()
/glibc-2.36/time/
Dgetdate.c129 if (__access (datemsk, R_OK) < 0) in __getdate_r()
/glibc-2.36/posix/
Dunistd.h281 #define R_OK 4 /* Test for read permission. */ macro
/glibc-2.36/malloc/
Dmemusage.c276 && (access (outname, R_OK | W_OK) == 0 || errno == ENOENT)) in me()
/glibc-2.36/conform/data/
Dunistd.h-data145 constant R_OK
/glibc-2.36/elf/
Drtld.c1878 if (__glibc_unlikely (__access (preload_file, R_OK) == 0)) in dl_main()
/glibc-2.36/manual/
Dfilesys.texi2747 flags @code{R_OK}, @code{W_OK}, @code{X_OK}, or the existence test
2781 @deftypevr Macro int R_OK
/glibc-2.36/ChangeLog.old/
DChangeLog.52048 these macros if not already available based on R_OK, W_OK, and