Lines Matching defs:mode
261 #define VCWD_FOPEN(path, mode) virtual_fopen(path, mode TSRMLS_CC) argument
264 #define VCWD_OPEN_MODE(path, flags, mode) virtual_open(path TSRMLS_CC, flags, mode) argument
265 #define VCWD_CREAT(path, mode) virtual_creat(path, mode TSRMLS_CC) argument
274 #define VCWD_MKDIR(pathname, mode) virtual_mkdir(pathname, mode TSRMLS_CC) argument
278 #define VCWD_ACCESS(pathname, mode) virtual_access(pathname, mode TSRMLS_CC) argument
282 #define VCWD_CHMOD(path, mode) virtual_chmod(path, mode TSRMLS_CC) argument
293 #define VCWD_FOPEN(path, mode) fopen(path, mode) argument
295 #define VCWD_OPEN_MODE(path, flags, mode) open(path, flags, mode) argument
296 #define VCWD_CREAT(path, mode) creat(path, mode) argument
310 #define VCWD_MKDIR(pathname, mode) mkdir(pathname, mode) argument
315 #define VCWD_ACCESS(pathname, mode) tsrm_win32_access(pathname, mode TSRMLS_CC) argument
317 #define VCWD_ACCESS(pathname, mode) access(pathname, mode) argument
330 #define VCWD_CHMOD(path, mode) chmod(path, mode) argument