Searched refs:R_OK (Results 1 – 9 of 9) sorted by relevance
/PHP-7.3/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 407 if (access(fullname, R_OK) == 0) { 427 if (access(fullname, R_OK) == 0) { \
|
/PHP-7.3/win32/ |
H A D | ioutil.h | 81 #ifndef R_OK 82 #define R_OK 0x04 macro
|
/PHP-7.3/ext/standard/ |
H A D | filestat.c | 796 #ifdef R_OK in php_stat() 798 RETURN_BOOL(VCWD_ACCESS(local, R_OK) == 0); in php_stat()
|
/PHP-7.3/ext/opcache/ |
H A D | zend_accelerator_module.c | 262 access(ZSTR_VAL(new_value), R_OK | W_OK | X_OK) != 0) {
|
H A D | ZendAccelerator.c | 1920 return access(ZSTR_VAL(persistent_script->script.filename), R_OK) != 0; in check_persistent_script_access() 1929 ret = access(phar_path, R_OK) != 0; in check_persistent_script_access()
|
/PHP-7.3/ext/posix/ |
H A D | posix.c | 343 REGISTER_LONG_CONSTANT("POSIX_R_OK", R_OK, CONST_CS | CONST_PERSISTENT); in PHP_MINIT_FUNCTION()
|
/PHP-7.3/ext/fileinfo/ |
H A D | libmagic.patch | 1176 - if (access(buf, R_OK) != -1) { 1179 + if (VCWD_ACCESS(buf, R_OK) == 0) { 1181 + if (VCWD_ACCESS(buf, R_OK) != -1) { 3270 - if (access(tmppath, R_OK) == -1) 3369 - if (access(hmagicpath, R_OK) == -1)
|
/PHP-7.3/ext/fileinfo/libmagic/ |
H A D | apprentice.c | 3243 if (VCWD_ACCESS(buf, R_OK) == 0) { 3245 if (VCWD_ACCESS(buf, R_OK) != -1) {
|
/PHP-7.3/ext/sqlite3/libsqlite/ |
H A D | sqlite3.c | 38745 *pResOut = osAccess(zPath, W_OK|R_OK)==0;
|
Completed in 427 milliseconds