Lines Matching refs:fileno
1620 php_socket_t fileno; in PHP_FUNCTION() local
1629 php_stream_cast(stream, PHP_STREAM_AS_FD_FOR_SELECT, (void*)&fileno, 0); in PHP_FUNCTION()
1631 php_stream_cast(stream, PHP_STREAM_AS_FD, (void*)&fileno, 0); in PHP_FUNCTION()
1638 RETVAL_BOOL(php_win32_console_fileno_is_console(fileno)); in PHP_FUNCTION()
1641 RETVAL_BOOL(isatty(fileno)); in PHP_FUNCTION()
1645 …RETVAL_BOOL(zend_fstat(fileno, &stat) == 0 && (stat.st_mode & /*S_IFMT*/0170000) == /*S_IFCHR*/002… in PHP_FUNCTION()
1659 zend_long fileno; in PHP_FUNCTION() local
1670 php_stream_cast(stream, PHP_STREAM_AS_FD_FOR_SELECT, (void*)&fileno, 0); in PHP_FUNCTION()
1673 php_stream_cast(stream, PHP_STREAM_AS_FD, (void*)&fileno, 0); in PHP_FUNCTION()
1687 if (!php_win32_console_fileno_is_console(fileno)) { in PHP_FUNCTION()
1693 if (php_win32_console_fileno_has_vt100(fileno)) { in PHP_FUNCTION()
1702 if (php_win32_console_fileno_set_vt100(fileno, enable ? TRUE : FALSE)) { in PHP_FUNCTION()