Searched refs:R_OK (Results 1 – 8 of 8) sorted by relevance
/php-src/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 417 if (access(fullname, R_OK) == 0) { 437 if (access(fullname, R_OK) == 0) { \
|
/php-src/win32/ |
H A D | ioutil.h | 79 #ifndef R_OK 80 #define R_OK 0x04 macro
|
/php-src/ext/posix/ |
H A D | posix_arginfo.h | 343 REGISTER_LONG_CONSTANT("POSIX_R_OK", R_OK, CONST_PERSISTENT); in register_posix_symbols()
|
/php-src/ext/standard/ |
H A D | filestat.c | 772 #ifdef R_OK in php_stat() 774 RETURN_BOOL(VCWD_ACCESS(file_path_to_check, R_OK) == 0); in php_stat()
|
/php-src/ext/fileinfo/ |
H A D | libmagic.patch | 835 - if (access(buf, R_OK) != -1) { 838 + if (VCWD_ACCESS(buf, R_OK) == 0) { 840 + if (VCWD_ACCESS(buf, R_OK) != -1) { 2288 - if (access(tmppath, R_OK) == -1) 2389 - if (access(hmagicpath, R_OK) == -1)
|
/php-src/ext/opcache/ |
H A D | zend_accelerator_module.c | 175 access(ZSTR_VAL(new_value), R_OK | W_OK | X_OK) != 0) {
|
H A D | ZendAccelerator.c | 1970 return access(ZSTR_VAL(persistent_script->script.filename), R_OK) != 0; in check_persistent_script_access() 1979 bool ret = access(phar_path, R_OK) != 0; in check_persistent_script_access()
|
/php-src/ext/fileinfo/libmagic/ |
H A D | apprentice.c | 3437 if (VCWD_ACCESS(buf, R_OK) == 0) { 3439 if (VCWD_ACCESS(buf, R_OK) != -1) {
|
Completed in 43 milliseconds