Searched refs:php_stream_can_cast (Results 1 – 6 of 6) sorted by relevance
/PHP-7.4/ext/standard/ |
H A D | streamsfuncs.c | 1633 if (php_stream_can_cast(stream, PHP_STREAM_AS_FD_FOR_SELECT) == SUCCESS) { in PHP_FUNCTION() 1635 } else if (php_stream_can_cast(stream, PHP_STREAM_AS_FD) == SUCCESS) { in PHP_FUNCTION() 1677 if (php_stream_can_cast(stream, PHP_STREAM_AS_FD_FOR_SELECT) == SUCCESS) { in PHP_FUNCTION() 1680 else if (php_stream_can_cast(stream, PHP_STREAM_AS_FD) == SUCCESS) { in PHP_FUNCTION()
|
/PHP-7.4/docs/ |
H A D | streams.md | 226 PHPAPI int php_stream_can_cast(php_stream * stream, int castas) 233 if (php_stream_can_cast(stream, PHP_STREAM_AS_SOCKETD) == SUCCESS) { 238 Please note the difference between `php_stream_is` and `php_stream_can_cast`;
|
/PHP-7.4/ext/posix/ |
H A D | posix.c | 785 if (php_stream_can_cast(stream, PHP_STREAM_AS_FD_FOR_SELECT) == SUCCESS) { in php_posix_stream_get_fd() 787 } else if (php_stream_can_cast(stream, PHP_STREAM_AS_FD) == SUCCESS) { in php_posix_stream_get_fd()
|
/PHP-7.4/main/ |
H A D | php_streams.h | 496 #define php_stream_can_cast(stream, as) _php_stream_cast((stream), (as), NULL, 0) macro
|
/PHP-7.4/ext/gd/ |
H A D | gd.c | 2512 else if (php_stream_can_cast(stream, PHP_STREAM_AS_STDIO)) { in _php_image_create_from()
|
/PHP-7.4/ |
H A D | NEWS | 312 . Fixed php_pgsql_fd_cast() wrt. php_stream_can_cast(). (cmb)
|
Completed in 32 milliseconds