Lines Matching defs:mode
236 #define VCWD_FOPEN(path, mode) virtual_fopen(path, mode) argument
239 #define VCWD_OPEN_MODE(path, flags, mode) virtual_open(path, flags, mode) argument
240 #define VCWD_CREAT(path, mode) virtual_creat(path, mode) argument
249 #define VCWD_MKDIR(pathname, mode) virtual_mkdir(pathname, mode) argument
253 #define VCWD_ACCESS(pathname, mode) virtual_access(pathname, mode) argument
257 #define VCWD_CHMOD(path, mode) virtual_chmod(path, mode) argument
267 #define VCWD_CREAT(path, mode) creat(path, mode) argument
271 #define VCWD_FOPEN(path, mode) php_win32_ioutil_fopen(path, mode) argument
273 #define VCWD_OPEN_MODE(path, flags, mode) php_win32_ioutil_open(path, flags, mode) argument
275 #define VCWD_MKDIR(pathname, mode) php_win32_ioutil_mkdir(pathname, mode) argument
279 #define VCWD_ACCESS(pathname, mode) tsrm_win32_access(pathname, mode) argument
281 #define VCWD_CHMOD(path, mode) php_win32_ioutil_chmod(path, mode) argument
283 #define VCWD_FOPEN(path, mode) fopen(path, mode) argument
285 #define VCWD_OPEN_MODE(path, flags, mode) open(path, flags, mode) argument
287 #define VCWD_MKDIR(pathname, mode) mkdir(pathname, mode) argument
291 #define VCWD_ACCESS(pathname, mode) access(pathname, mode) argument
293 #define VCWD_CHMOD(path, mode) chmod(path, mode) argument
337 #define S_ISDIR(mode) (((mode)&S_IFMT) == S_IFDIR) argument
341 #define S_ISREG(mode) (((mode)&S_IFMT) == S_IFREG) argument
345 #define S_ISLNK(mode) (((mode)&S_IFMT) == S_IFLNK) argument