Home
last modified time | relevance | path

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

/PHP-5.4/ext/gd/libgd/
H A Dgdft.c19 #ifndef R_OK
20 # define R_OK 04 /* Needed in Windows */ macro
26 #ifndef R_OK
27 #define R_OK 2 macro
387 if (access(fullname, R_OK) == 0) {
408 if (access(fullname, R_OK) == 0) { \
/PHP-5.4/ext/fileinfo/libmagic/
H A Dmagic.c126 if (access(hmagicpath, R_OK) == -1)
146 if (tmppath && access(tmppath, R_OK) != -1) { \
H A Dapprentice.c2846 if (VCWD_ACCESS(buf, R_OK) == 0) {
2848 if (VCWD_ACCESS(buf, R_OK) != -1) {
/PHP-5.4/TSRM/
H A Dtsrm_virtual_cwd.h178 #ifndef R_OK
179 #define R_OK 0x04 macro
/PHP-5.4/ext/standard/
H A Dfilestat.c885 #ifdef R_OK in php_stat()
887 RETURN_BOOL(VCWD_ACCESS(local, R_OK) == 0); in php_stat()
/PHP-5.4/ext/posix/
H A Dposix.c331 REGISTER_LONG_CONSTANT("POSIX_R_OK", R_OK, CONST_CS | CONST_PERSISTENT); in PHP_MINIT_FUNCTION()
/PHP-5.4/ext/fileinfo/
H A Dlibmagic.patch815 - if (access(buf, R_OK) != -1) {
818 + if (VCWD_ACCESS(buf, R_OK) == 0) {
820 + if (VCWD_ACCESS(buf, R_OK) != -1) {
2303 + if (access(hmagicpath, R_OK) == -1)
2309 - if (access(hmagicpath, R_OK) == -1)
/PHP-5.4/ext/sqlite3/libsqlite/
H A Dsqlite3.c31438 amode = W_OK|R_OK;
31441 amode = R_OK;

Completed in 332 milliseconds