H A D | zend_virtual_cwd.h | 257 #define VCWD_FOPEN(path, mode) virtual_fopen(path, mode) argument 261 #define VCWD_CREAT(path, mode) virtual_creat(path, mode) argument 278 #define VCWD_CHMOD(path, mode) virtual_chmod(path, mode) argument 288 #define VCWD_CREAT(path, mode) creat(path, mode) argument 304 #define VCWD_FOPEN(path, mode) fopen(path, mode) argument 308 #define VCWD_MKDIR(pathname, mode) mkdir(pathname, mode) argument 312 #define VCWD_ACCESS(pathname, mode) access(pathname, mode) argument 314 #define VCWD_CHMOD(path, mode) chmod(path, mode) argument 358 #define S_ISDIR(mode) (((mode)&S_IFMT) == S_IFDIR) argument 362 #define S_ISREG(mode) (((mode)&S_IFMT) == S_IFREG) argument [all …]
|