S_IFMT            354 Zend/zend_virtual_cwd.h #define S_ISDIR(mode)	(((mode)&S_IFMT) == S_IFDIR)
S_IFMT            358 Zend/zend_virtual_cwd.h #define S_ISREG(mode)	(((mode)&S_IFMT) == S_IFREG)
S_IFMT            362 Zend/zend_virtual_cwd.h #define S_ISLNK(mode)	(((mode)&S_IFMT) == S_IFLNK)
S_IFMT           3860 ext/exif/exif.c 			if ((st.st_mode & S_IFMT) != S_IFREG) {
S_IFMT            150 ext/fileinfo/libmagic/fsmagic.c 	switch (sb->st_mode & S_IFMT) {
S_IFMT            514 ext/phar/func_interceptors.c 		switch(stat_sb->st_mode & S_IFMT) {
S_IFMT            518 ext/phar/func_interceptors.c 		php_error_docref(NULL, E_NOTICE, "Unknown file type (%u)", stat_sb->st_mode & S_IFMT);
S_IFMT            540 ext/standard/dir.c 			if (S_IFDIR != (s.st_mode & S_IFMT)) {
S_IFMT            972 ext/standard/filestat.c 		switch(ssb.sb.st_mode & S_IFMT) {
S_IFMT            982 ext/standard/filestat.c 		php_error_docref(NULL, E_NOTICE, "Unknown file type (%d)", ssb.sb.st_mode&S_IFMT);
S_IFMT            398 ext/standard/php_fopen_wrapper.c 		if (zend_fstat(fd, &st) == 0 && (st.st_mode & S_IFMT) == S_IFSOCK) {
S_IFMT             52 ext/zip/lib/zip_source_filep.c #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
S_IFMT            434 ext/zip/lib/zip_source_filep.c 		else if ((fst.st_mode&S_IFMT) == S_IFREG) {
S_IFMT            582 ext/zip/php_zip.c 			if (S_IFDIR != (s.st_mode & S_IFMT)) {
S_IFMT            675 ext/zip/php_zip.c 			if (S_IFDIR == (s.st_mode & S_IFMT)) {
S_IFMT            552 main/php_ini.c 				if (!((statbuf.st_mode & S_IFMT) == S_IFDIR)) {
S_IFMT            171 sapi/fpm/fpm/fpm_conf.c 	return (sb.st_mode & S_IFMT) == S_IFDIR;