H A D | zend_virtual_cwd.h | 269 #define VCWD_FOPEN(path, mode) virtual_fopen(path, mode) argument 273 #define VCWD_CREAT(path, mode) virtual_creat(path, mode) argument 290 #define VCWD_CHMOD(path, mode) virtual_chmod(path, mode) argument 300 #define VCWD_CREAT(path, mode) creat(path, mode) argument 316 #define VCWD_FOPEN(path, mode) fopen(path, mode) argument 320 #define VCWD_MKDIR(pathname, mode) mkdir(pathname, mode) argument 324 #define VCWD_ACCESS(pathname, mode) access(pathname, mode) argument 326 #define VCWD_CHMOD(path, mode) chmod(path, mode) argument 370 #define S_ISDIR(mode) (((mode)&S_IFMT) == S_IFDIR) argument 374 #define S_ISREG(mode) (((mode)&S_IFMT) == S_IFREG) argument [all …]
|