Home
last modified time | relevance | path

Searched refs:this_fd (Results 1 – 2 of 2) sorted by relevance

/PHP-8.0/ext/standard/
H A Dstreamsfuncs.c626 php_socket_t this_fd; in stream_array_to_fd_set() local
638 …am, PHP_STREAM_AS_FD_FOR_SELECT | PHP_STREAM_CAST_INTERNAL, (void*)&this_fd, 1) && this_fd != -1) { in stream_array_to_fd_set()
640 PHP_SAFE_FD_SET(this_fd, fds); in stream_array_to_fd_set()
642 if (this_fd > *max_fd) { in stream_array_to_fd_set()
643 *max_fd = this_fd; in stream_array_to_fd_set()
666 php_socket_t this_fd; in stream_array_from_fd_set() local
678 … PHP_STREAM_AS_FD_FOR_SELECT | PHP_STREAM_CAST_INTERNAL, (void*)&this_fd, 1) && this_fd != SOCK_ER… in stream_array_from_fd_set()
679 if (PHP_SAFE_FD_ISSET(this_fd, fds)) { in stream_array_from_fd_set()
/PHP-8.0/ext/mysqlnd/
H A Dmysqlnd_connection.c2498 php_socket_t this_fd; local
2513 …_stream_cast(stream, PHP_STREAM_AS_FD_FOR_SELECT | PHP_STREAM_CAST_INTERNAL, (void*)&this_fd, 1) &&
2514 ZEND_VALID_SOCKET(this_fd))
2517 PHP_SAFE_FD_SET(this_fd, fds);
2519 if (this_fd > *max_fd) {
2520 *max_fd = this_fd;
2535 php_socket_t this_fd; local
2546 (void*)&this_fd, 1) && ZEND_VALID_SOCKET(this_fd)) {
2547 if (PHP_SAFE_FD_ISSET(this_fd, fds)) {

Completed in 16 milliseconds