Home
last modified time | relevance | path

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

/PHP-7.0/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
407 if (access(fullname, R_OK) == 0) {
427 if (access(fullname, R_OK) == 0) { \
/PHP-7.0/ext/fileinfo/libmagic/
H A Dmagic.c126 if (access(hmagicpath, R_OK) == -1)
146 if (tmppath && access(tmppath, R_OK) != -1) { \
H A Dapprentice.c3094 if (VCWD_ACCESS(buf, R_OK) == 0) {
3096 if (VCWD_ACCESS(buf, R_OK) != -1) {
/PHP-7.0/Zend/
H A Dzend_virtual_cwd.h180 #ifndef R_OK
181 #define R_OK 0x04 macro
/PHP-7.0/ext/standard/
H A Dfilestat.c873 #ifdef R_OK in php_stat()
875 RETURN_BOOL(VCWD_ACCESS(local, R_OK) == 0); in php_stat()
/PHP-7.0/ext/opcache/
H A Dzend_accelerator_module.c261 access(ZSTR_VAL(new_value), R_OK | W_OK | X_OK) != 0) {
H A DZendAccelerator.c1786 UNEXPECTED(access(ZSTR_VAL(persistent_script->full_path), R_OK) != 0)) { in persistent_compile_file()
/PHP-7.0/ext/posix/
H A Dposix.c342 REGISTER_LONG_CONSTANT("POSIX_R_OK", R_OK, CONST_CS | CONST_PERSISTENT); in PHP_MINIT_FUNCTION()
/PHP-7.0/ext/fileinfo/
H A Dlibmagic.patch897 - if (access(buf, R_OK) != -1) {
900 + if (VCWD_ACCESS(buf, R_OK) == 0) {
902 + if (VCWD_ACCESS(buf, R_OK) != -1) {
2481 + if (access(hmagicpath, R_OK) == -1)
2487 - if (access(hmagicpath, R_OK) == -1)
/PHP-7.0/ext/sqlite3/libsqlite/
H A Dsqlite3.c35280 *pResOut = osAccess(zPath, W_OK|R_OK)==0;

Completed in 445 milliseconds