Lines Matching refs:mode

170 CWD_API FILE *virtual_fopen(const char *path, const char *mode);
172 CWD_API int virtual_creat(const char *path, mode_t mode);
177 CWD_API int virtual_mkdir(const char *pathname, mode_t mode);
181 CWD_API int virtual_access(const char *pathname, int mode);
186 CWD_API int virtual_chmod(const char *filename, mode_t mode);
258 #define VCWD_FOPEN(path, mode) virtual_fopen(path, mode) argument
261 #define VCWD_OPEN_MODE(path, flags, mode) virtual_open(path, flags, mode) argument
262 #define VCWD_CREAT(path, mode) virtual_creat(path, mode) argument
271 #define VCWD_MKDIR(pathname, mode) virtual_mkdir(pathname, mode) argument
275 #define VCWD_ACCESS(pathname, mode) virtual_access(pathname, mode) argument
279 #define VCWD_CHMOD(path, mode) virtual_chmod(path, mode) argument
289 #define VCWD_CREAT(path, mode) creat(path, mode) argument
293 #define VCWD_FOPEN(path, mode) php_win32_ioutil_fopen(path, mode) argument
295 #define VCWD_OPEN_MODE(path, flags, mode) php_win32_ioutil_open(path, flags, mode) argument
297 #define VCWD_MKDIR(pathname, mode) php_win32_ioutil_mkdir(pathname, mode) argument
301 #define VCWD_ACCESS(pathname, mode) tsrm_win32_access(pathname, mode) argument
303 #define VCWD_CHMOD(path, mode) php_win32_ioutil_chmod(path, mode) argument
305 #define VCWD_FOPEN(path, mode) fopen(path, mode) argument
307 #define VCWD_OPEN_MODE(path, flags, mode) open(path, flags, mode) argument
309 #define VCWD_MKDIR(pathname, mode) mkdir(pathname, mode) argument
313 #define VCWD_ACCESS(pathname, mode) access(pathname, mode) argument
315 #define VCWD_CHMOD(path, mode) chmod(path, mode) argument
359 #define S_ISDIR(mode) (((mode)&S_IFMT) == S_IFDIR) argument
363 #define S_ISREG(mode) (((mode)&S_IFMT) == S_IFREG) argument
367 #define S_ISLNK(mode) (((mode)&S_IFMT) == S_IFLNK) argument