stat_sb           439 ext/phar/func_interceptors.c static void phar_fancy_stat(zend_stat_t *stat_sb, int type, zval *return_value)
stat_sb           451 ext/phar/func_interceptors.c 		if(stat_sb->st_uid==getuid()) {
stat_sb           455 ext/phar/func_interceptors.c 		} else if(stat_sb->st_gid==getgid()) {
stat_sb           468 ext/phar/func_interceptors.c 					if(stat_sb->st_gid==gids[i]) {
stat_sb           483 ext/phar/func_interceptors.c 		RETURN_LONG((zend_long)stat_sb->st_mode);
stat_sb           485 ext/phar/func_interceptors.c 		RETURN_LONG((zend_long)stat_sb->st_ino);
stat_sb           487 ext/phar/func_interceptors.c 		RETURN_LONG((zend_long)stat_sb->st_size);
stat_sb           489 ext/phar/func_interceptors.c 		RETURN_LONG((zend_long)stat_sb->st_uid);
stat_sb           491 ext/phar/func_interceptors.c 		RETURN_LONG((zend_long)stat_sb->st_gid);
stat_sb           494 ext/phar/func_interceptors.c 		RETURN_LONG((zend_long)stat_sb->st_atime.tv_sec);
stat_sb           496 ext/phar/func_interceptors.c 		RETURN_LONG((zend_long)stat_sb->st_atime);
stat_sb           500 ext/phar/func_interceptors.c 		RETURN_LONG((zend_long)stat_sb->st_mtime.tv_sec);
stat_sb           502 ext/phar/func_interceptors.c 		RETURN_LONG((zend_long)stat_sb->st_mtime);
stat_sb           506 ext/phar/func_interceptors.c 		RETURN_LONG((zend_long)stat_sb->st_ctime.tv_sec);
stat_sb           508 ext/phar/func_interceptors.c 		RETURN_LONG((zend_long)stat_sb->st_ctime);
stat_sb           511 ext/phar/func_interceptors.c 		if (S_ISLNK(stat_sb->st_mode)) {
stat_sb           514 ext/phar/func_interceptors.c 		switch(stat_sb->st_mode & S_IFMT) {
stat_sb           518 ext/phar/func_interceptors.c 		php_error_docref(NULL, E_NOTICE, "Unknown file type (%u)", stat_sb->st_mode & S_IFMT);
stat_sb           521 ext/phar/func_interceptors.c 		RETURN_BOOL((stat_sb->st_mode & wmask) != 0);
stat_sb           523 ext/phar/func_interceptors.c 		RETURN_BOOL((stat_sb->st_mode&rmask)!=0);
stat_sb           525 ext/phar/func_interceptors.c 		RETURN_BOOL((stat_sb->st_mode&xmask)!=0 && !S_ISDIR(stat_sb->st_mode));
stat_sb           527 ext/phar/func_interceptors.c 		RETURN_BOOL(S_ISREG(stat_sb->st_mode));
stat_sb           529 ext/phar/func_interceptors.c 		RETURN_BOOL(S_ISDIR(stat_sb->st_mode));
stat_sb           531 ext/phar/func_interceptors.c 		RETURN_BOOL(S_ISLNK(stat_sb->st_mode));
stat_sb           539 ext/phar/func_interceptors.c 		ZVAL_LONG(&stat_dev, stat_sb->st_dev);
stat_sb           540 ext/phar/func_interceptors.c 		ZVAL_LONG(&stat_ino, stat_sb->st_ino);
stat_sb           541 ext/phar/func_interceptors.c 		ZVAL_LONG(&stat_mode, stat_sb->st_mode);
stat_sb           542 ext/phar/func_interceptors.c 		ZVAL_LONG(&stat_nlink, stat_sb->st_nlink);
stat_sb           543 ext/phar/func_interceptors.c 		ZVAL_LONG(&stat_uid, stat_sb->st_uid);
stat_sb           544 ext/phar/func_interceptors.c 		ZVAL_LONG(&stat_gid, stat_sb->st_gid);
stat_sb           546 ext/phar/func_interceptors.c 		ZVAL_LONG(&stat_rdev, stat_sb->st_rdev);
stat_sb           550 ext/phar/func_interceptors.c 		ZVAL_LONG(&stat_size, stat_sb->st_size);
stat_sb           552 ext/phar/func_interceptors.c 		ZVAL_LONG(&stat_atime, (stat_sb->st_atime).tv_sec);
stat_sb           553 ext/phar/func_interceptors.c 		ZVAL_LONG(&stat_mtime, (stat_sb->st_mtime).tv_sec);
stat_sb           554 ext/phar/func_interceptors.c 		ZVAL_LONG(&stat_ctime, (stat_sb->st_ctime).tv_sec);
stat_sb           556 ext/phar/func_interceptors.c 		ZVAL_LONG(&stat_atime, stat_sb->st_atime);
stat_sb           557 ext/phar/func_interceptors.c 		ZVAL_LONG(&stat_mtime, stat_sb->st_mtime);
stat_sb           558 ext/phar/func_interceptors.c 		ZVAL_LONG(&stat_ctime, stat_sb->st_ctime);
stat_sb           561 ext/phar/func_interceptors.c 		ZVAL_LONG(&stat_blksize, stat_sb->st_blksize);
stat_sb           566 ext/phar/func_interceptors.c 		ZVAL_LONG(&stat_blocks, stat_sb->st_blocks);
stat_sb           841 ext/standard/filestat.c 	zend_stat_t *stat_sb;
stat_sb           902 ext/standard/filestat.c 	stat_sb = &ssb.sb;
stat_sb          1003 ext/standard/filestat.c 		ZVAL_LONG(&stat_dev, stat_sb->st_dev);
stat_sb          1004 ext/standard/filestat.c 		ZVAL_LONG(&stat_ino, stat_sb->st_ino);
stat_sb          1005 ext/standard/filestat.c 		ZVAL_LONG(&stat_mode, stat_sb->st_mode);
stat_sb          1006 ext/standard/filestat.c 		ZVAL_LONG(&stat_nlink, stat_sb->st_nlink);
stat_sb          1007 ext/standard/filestat.c 		ZVAL_LONG(&stat_uid, stat_sb->st_uid);
stat_sb          1008 ext/standard/filestat.c 		ZVAL_LONG(&stat_gid, stat_sb->st_gid);
stat_sb          1014 ext/standard/filestat.c 	if ((int)stat_sb->st_rdev < 0) {
stat_sb          1015 ext/standard/filestat.c 		ZVAL_LONG(&stat_rdev, (int)stat_sb->st_rdev);
stat_sb          1017 ext/standard/filestat.c 		ZVAL_LONG(&stat_rdev, stat_sb->st_rdev);
stat_sb          1020 ext/standard/filestat.c 	ZVAL_LONG(&stat_rdev, stat_sb->st_rdev);
stat_sb          1025 ext/standard/filestat.c 		ZVAL_LONG(&stat_size, stat_sb->st_size);
stat_sb          1026 ext/standard/filestat.c 		ZVAL_LONG(&stat_atime, stat_sb->st_atime);
stat_sb          1027 ext/standard/filestat.c 		ZVAL_LONG(&stat_mtime, stat_sb->st_mtime);
stat_sb          1028 ext/standard/filestat.c 		ZVAL_LONG(&stat_ctime, stat_sb->st_ctime);
stat_sb          1030 ext/standard/filestat.c 		ZVAL_LONG(&stat_blksize, stat_sb->st_blksize);
stat_sb          1035 ext/standard/filestat.c 		ZVAL_LONG(&stat_blocks, stat_sb->st_blocks);