Searched refs:this_fd (Results 1 – 2 of 2) sorted by relevance
/PHP-7.1/ext/standard/ |
H A D | streamsfuncs.c | 601 php_socket_t this_fd; in stream_array_to_fd_set() local 613 …am, PHP_STREAM_AS_FD_FOR_SELECT | PHP_STREAM_CAST_INTERNAL, (void*)&this_fd, 1) && this_fd != -1) { in stream_array_to_fd_set() 615 PHP_SAFE_FD_SET(this_fd, fds); in stream_array_to_fd_set() 617 if (this_fd > *max_fd) { in stream_array_to_fd_set() 618 *max_fd = this_fd; in stream_array_to_fd_set() 641 php_socket_t this_fd; in stream_array_from_fd_set() local 653 … PHP_STREAM_AS_FD_FOR_SELECT | PHP_STREAM_CAST_INTERNAL, (void*)&this_fd, 1) && this_fd != SOCK_ER… in stream_array_from_fd_set() 654 if (PHP_SAFE_FD_ISSET(this_fd, fds)) { in stream_array_from_fd_set()
|
/PHP-7.1/ext/mysqlnd/ |
H A D | mysqlnd_connection.c | 2538 php_socket_t this_fd; local 2553 …_stream_cast(stream, PHP_STREAM_AS_FD_FOR_SELECT | PHP_STREAM_CAST_INTERNAL, (void*)&this_fd, 1) && 2554 ZEND_VALID_SOCKET(this_fd)) 2557 PHP_SAFE_FD_SET(this_fd, fds); 2559 if (this_fd > *max_fd) { 2560 *max_fd = this_fd; 2575 php_socket_t this_fd; local 2586 (void*)&this_fd, 1) && ZEND_VALID_SOCKET(this_fd)) { 2587 if (PHP_SAFE_FD_ISSET(this_fd, fds)) {
|
Completed in 16 milliseconds