Home
last modified time | relevance | path

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

/PHP-5.3/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
386 if (access(fullname, R_OK) == 0) {
406 if (access(fullname, R_OK) == 0) { \
/PHP-5.3/ext/fileinfo/libmagic/
H A Dmagic.c121 if (access(hmagicpath, R_OK) == -1)
140 if (tmppath && access(tmppath, R_OK) != -1) { \
H A Dapprentice.c2410 if (VCWD_ACCESS(buf, R_OK) == 0) {
2412 if (VCWD_ACCESS(buf, R_OK) != -1) {
/PHP-5.3/TSRM/
H A Dtsrm_virtual_cwd.h178 #ifndef R_OK
179 #define R_OK 0x04 macro
/PHP-5.3/ext/standard/
H A Dfilestat.c837 #ifdef R_OK in php_stat()
839 RETURN_BOOL(VCWD_ACCESS(local, R_OK) == 0); in php_stat()
/PHP-5.3/ext/posix/
H A Dposix.c331 REGISTER_LONG_CONSTANT("POSIX_R_OK", R_OK, CONST_CS | CONST_PERSISTENT); in PHP_MINIT_FUNCTION()
/PHP-5.3/ext/fileinfo/
H A Dlibmagic.patch773 - if (access(buf, R_OK) != -1) {
776 + if (VCWD_ACCESS(buf, R_OK) == 0) {
778 + if (VCWD_ACCESS(buf, R_OK) != -1) {
/PHP-5.3/ext/sqlite3/libsqlite/
H A Dsqlite3.c29663 amode = W_OK|R_OK;
29666 amode = R_OK;

Completed in 245 milliseconds