Lines Matching refs:st_mode
844 || !S_ISLNK(ssb.sb.st_mode)) { in php_stat()
897 RETURN_LONG((zend_long)stat_sb->st_mode); in php_stat()
913 if (S_ISLNK(stat_sb->st_mode)) { in php_stat()
916 switch(stat_sb->st_mode & S_IFMT) { in php_stat()
926 php_error_docref(NULL, E_NOTICE, "Unknown file type (%d)", stat_sb->st_mode&S_IFMT); in php_stat()
929 RETURN_BOOL((stat_sb->st_mode & wmask) != 0); in php_stat()
931 RETURN_BOOL((stat_sb->st_mode & rmask) != 0); in php_stat()
933 RETURN_BOOL((stat_sb->st_mode & xmask) != 0); in php_stat()
935 RETURN_BOOL(S_ISREG(stat_sb->st_mode)); in php_stat()
937 RETURN_BOOL(S_ISDIR(stat_sb->st_mode)); in php_stat()
939 RETURN_BOOL(S_ISLNK(stat_sb->st_mode)); in php_stat()
961 ZVAL_LONG(&stat_mode, stat_sb->st_mode); in php_stat()