Lines Matching defs:mode
259 #define VCWD_FOPEN(path, mode) virtual_fopen(path, mode TSRMLS_CC) argument
262 #define VCWD_OPEN_MODE(path, flags, mode) virtual_open(path TSRMLS_CC, flags, mode) argument
263 #define VCWD_CREAT(path, mode) virtual_creat(path, mode TSRMLS_CC) argument
272 #define VCWD_MKDIR(pathname, mode) virtual_mkdir(pathname, mode TSRMLS_CC) argument
276 #define VCWD_ACCESS(pathname, mode) virtual_access(pathname, mode TSRMLS_CC) argument
280 #define VCWD_CHMOD(path, mode) virtual_chmod(path, mode TSRMLS_CC) argument
291 #define VCWD_FOPEN(path, mode) fopen(path, mode) argument
293 #define VCWD_OPEN_MODE(path, flags, mode) open(path, flags, mode) argument
294 #define VCWD_CREAT(path, mode) creat(path, mode) argument
308 #define VCWD_MKDIR(pathname, mode) mkdir(pathname, mode) argument
313 #define VCWD_ACCESS(pathname, mode) tsrm_win32_access(pathname, mode TSRMLS_CC) argument
315 #define VCWD_ACCESS(pathname, mode) access(pathname, mode) argument
328 #define VCWD_CHMOD(path, mode) chmod(path, mode) argument