H A D | zend_virtual_cwd.h | 266 #define VCWD_FOPEN(path, mode) virtual_fopen(path, mode) argument 270 #define VCWD_CREAT(path, mode) virtual_creat(path, mode) argument 287 #define VCWD_CHMOD(path, mode) virtual_chmod(path, mode) argument 297 #define VCWD_CREAT(path, mode) creat(path, mode) argument 313 #define VCWD_FOPEN(path, mode) fopen(path, mode) argument 317 #define VCWD_MKDIR(pathname, mode) mkdir(pathname, mode) argument 321 #define VCWD_ACCESS(pathname, mode) access(pathname, mode) argument 323 #define VCWD_CHMOD(path, mode) chmod(path, mode) argument 366 #define S_ISDIR(mode) (((mode)&S_IFMT) == S_IFDIR) argument 370 #define S_ISREG(mode) (((mode)&S_IFMT) == S_IFREG) argument [all …]
|