Searched refs:R_OK (Results 1 – 8 of 8) sorted by relevance
/PHP-5.4/ext/gd/libgd/ |
H A D | gdft.c | 19 #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 D | magic.c | 126 if (access(hmagicpath, R_OK) == -1) 146 if (tmppath && access(tmppath, R_OK) != -1) { \
|
H A D | apprentice.c | 2846 if (VCWD_ACCESS(buf, R_OK) == 0) { 2848 if (VCWD_ACCESS(buf, R_OK) != -1) {
|
/PHP-5.4/TSRM/ |
H A D | tsrm_virtual_cwd.h | 178 #ifndef R_OK 179 #define R_OK 0x04 macro
|
/PHP-5.4/ext/standard/ |
H A D | filestat.c | 885 #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 D | posix.c | 331 REGISTER_LONG_CONSTANT("POSIX_R_OK", R_OK, CONST_CS | CONST_PERSISTENT); in PHP_MINIT_FUNCTION()
|
/PHP-5.4/ext/fileinfo/ |
H A D | libmagic.patch | 815 - 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 D | sqlite3.c | 31438 amode = W_OK|R_OK; 31441 amode = R_OK;
|
Completed in 332 milliseconds