H A D | zend_virtual_cwd.h | 253 #define VCWD_FOPEN(path, mode) virtual_fopen(path, mode) argument 257 #define VCWD_CREAT(path, mode) virtual_creat(path, mode) argument 274 #define VCWD_CHMOD(path, mode) virtual_chmod(path, mode) argument 284 #define VCWD_CREAT(path, mode) creat(path, mode) argument 300 #define VCWD_FOPEN(path, mode) fopen(path, mode) argument 304 #define VCWD_MKDIR(pathname, mode) mkdir(pathname, mode) argument 308 #define VCWD_ACCESS(pathname, mode) access(pathname, mode) argument 310 #define VCWD_CHMOD(path, mode) chmod(path, mode) argument 354 #define S_ISDIR(mode) (((mode)&S_IFMT) == S_IFDIR) argument 358 #define S_ISREG(mode) (((mode)&S_IFMT) == S_IFREG) argument [all …]
|