Searched defs:S_ISREG (Results 1 - 8 of 8) sorted by relevance

/PHP_5_4/TSRM/
H A Dtsrm_virtual_cwd.c95 #ifndef S_ISREG
96 #define S_ISREG(mode) ((mode) & _S_IFREG) macro
413 if (php_sys_stat(state->cwd, &buf) == 0 && S_ISREG(buf.st_mode))
/PHP_5_4/ext/standard/
H A Dfilestat.c91 #ifndef S_ISREG
92 #define S_ISREG(mode) (((mode)&S_IFMT) == S_IFREG) macro
1003 RETURN_BOOL(S_ISREG(ssb.sb.st_mode));
/PHP_5_4/main/
H A Dfopen_wrappers.c56 #ifndef S_ISREG
57 #define S_ISREG(mode) (((mode) & S_IFMT) == S_IFREG) macro
H A Dwin95nt.h43 #ifndef S_ISREG
44 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG) macro
H A Dphp_ini.c40 #ifndef S_ISREG
41 #define S_ISREG(mode) (((mode) & S_IFMT) == S_IFREG) macro
637 if (S_ISREG(sb.st_mode)) {
728 if (S_ISREG(sb.st_mode)) {
/PHP_5_4/main/streams/
H A Dphp_streams_int.h58 #ifndef S_ISREG
59 #define S_ISREG(mode) (((mode)&S_IFMT) == S_IFREG) macro
/PHP_5_4/ext/phar/
H A Dfunc_interceptors.c426 #ifndef S_ISREG
427 #define S_ISREG(mode) (((mode)&S_IFMT) == S_IFREG) macro
530 RETURN_BOOL(S_ISREG(stat_sb->st_mode));
/PHP_5_4/ext/fileinfo/libmagic/
H A Dfsmagic.c73 #ifndef S_ISREG
74 #define S_ISREG(mode) ((mode) & _S_IFREG) macro

Completed in 13 milliseconds