Lines Matching defs:mode
261 #define VCWD_FOPEN(path, mode) virtual_fopen(path, mode) argument
264 #define VCWD_OPEN_MODE(path, flags, mode) virtual_open(path, flags, mode) argument
265 #define VCWD_CREAT(path, mode) virtual_creat(path, mode) argument
274 #define VCWD_MKDIR(pathname, mode) virtual_mkdir(pathname, mode) argument
278 #define VCWD_ACCESS(pathname, mode) virtual_access(pathname, mode) argument
282 #define VCWD_CHMOD(path, mode) virtual_chmod(path, mode) 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) argument
317 #define VCWD_ACCESS(pathname, mode) access(pathname, mode) argument
330 #define VCWD_CHMOD(path, mode) chmod(path, mode) argument
354 #define S_ISDIR(mode) (((mode)&S_IFMT) == S_IFDIR) argument
358 #define S_ISREG(mode) (((mode)&S_IFMT) == S_IFREG) argument
362 #define S_ISLNK(mode) (((mode)&S_IFMT) == S_IFLNK) argument