Lines Matching refs:fileno
1681 php_socket_t fileno; in PHP_FUNCTION() local
1694 …php_stream_cast(stream, PHP_STREAM_AS_FD_FOR_SELECT | PHP_STREAM_CAST_INTERNAL, (void*)&fileno, 0); in PHP_FUNCTION()
1696 php_stream_cast(stream, PHP_STREAM_AS_FD | PHP_STREAM_CAST_INTERNAL, (void*)&fileno, 0); in PHP_FUNCTION()
1703 RETVAL_BOOL(php_win32_console_fileno_is_console(fileno)); in PHP_FUNCTION()
1706 RETVAL_BOOL(isatty(fileno)); in PHP_FUNCTION()
1710 …RETVAL_BOOL(zend_fstat(fileno, &stat) == 0 && (stat.st_mode & /*S_IFMT*/0170000) == /*S_IFCHR*/002… in PHP_FUNCTION()
1724 zend_long fileno; in PHP_FUNCTION() local
1739 …php_stream_cast(stream, PHP_STREAM_AS_FD_FOR_SELECT | PHP_STREAM_CAST_INTERNAL, (void*)&fileno, 0); in PHP_FUNCTION()
1741 php_stream_cast(stream, PHP_STREAM_AS_FD | PHP_STREAM_CAST_INTERNAL, (void*)&fileno, 0); in PHP_FUNCTION()
1754 if (!php_win32_console_fileno_is_console(fileno)) { in PHP_FUNCTION()
1760 if (php_win32_console_fileno_has_vt100(fileno)) { in PHP_FUNCTION()
1769 if (php_win32_console_fileno_set_vt100(fileno, enable ? TRUE : FALSE)) { in PHP_FUNCTION()