Home
last modified time | relevance | path

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

/PHP-5.6/ext/standard/
H A Dstreamsfuncs.c619 php_socket_t this_fd; in stream_array_to_fd_set() local
630 …am, PHP_STREAM_AS_FD_FOR_SELECT | PHP_STREAM_CAST_INTERNAL, (void*)&this_fd, 1) && this_fd != -1) { in stream_array_to_fd_set()
632 PHP_SAFE_FD_SET(this_fd, fds); in stream_array_to_fd_set()
634 if (this_fd > *max_fd) { in stream_array_to_fd_set()
635 *max_fd = this_fd; in stream_array_to_fd_set()
664 php_socket_t this_fd; in stream_array_from_fd_set() local
683 … PHP_STREAM_AS_FD_FOR_SELECT | PHP_STREAM_CAST_INTERNAL, (void*)&this_fd, 1) && this_fd != SOCK_ER… in stream_array_from_fd_set()
684 if (PHP_SAFE_FD_ISSET(this_fd, fds)) { in stream_array_from_fd_set()
/PHP-5.6/ext/mysqlnd/
H A Dmysqlnd.c1310 php_socket_t this_fd; local
1325 (void*)&this_fd, 1) && this_fd >= 0) {
1327 PHP_SAFE_FD_SET(this_fd, fds);
1329 if (this_fd > *max_fd) {
1330 *max_fd = this_fd;
1344 php_socket_t this_fd; local
1355 (void*)&this_fd, 1) && this_fd >= 0) {
1356 if (PHP_SAFE_FD_ISSET(this_fd, fds)) {

Completed in 21 milliseconds