Home
last modified time | relevance | path

Searched refs:fds (Results 1 – 7 of 7) sorted by relevance

/PHP-5.5/sapi/fpm/fpm/events/
H A Dselect.c53 static fd_set fds; variable
77 FD_ZERO(&fds); in fpm_event_select_init()
94 current_fds = fds; in fpm_event_select_wait()
151 if (!FD_ISSET(ev->fd, &fds)) { in fpm_event_select_add()
152 FD_SET(ev->fd, &fds); in fpm_event_select_add()
166 if (FD_ISSET(ev->fd, &fds)) { in fpm_event_select_remove()
167 FD_CLR(ev->fd, &fds); in fpm_event_select_remove()
/PHP-5.5/sapi/fpm/
H A Dconfig.m4490 struct pollfd fds[2];
492 fds[0].fd = 0;
493 fds[0].events = POLLIN;
495 fds[1].fd = 0;
496 fds[1].events = POLLIN;
498 poll(fds, 2, 1);
522 fd_set fds;
526 FD_ZERO(&fds);
528 FD_SET(0, &fds);
529 select(FD_SETSIZE, &fds, NULL, NULL, &t);
/PHP-5.5/sapi/fpm/fpm/
H A Dfastcgi.c876 struct pollfd fds; local
881 fds.fd = req->fd;
882 fds.events = POLLIN;
883 fds.revents = 0;
886 ret = poll(&fds, 1, 5000);
888 if (ret > 0 && (fds.revents & POLLIN)) {
/PHP-5.5/sapi/cgi/
H A Dfastcgi.c1236 struct pollfd fds; local
1239 fds.fd = req->fd;
1240 fds.events = POLLIN;
1241 fds.revents = 0;
1244 ret = poll(&fds, 1, 5000);
1246 if (ret > 0 && (fds.revents & POLLIN)) {
/PHP-5.5/ext/standard/
H A Dstreamsfuncs.c604 static int stream_array_to_fd_set(zval *stream_array, fd_set *fds, php_socket_t *max_fd TSRMLS_DC) in stream_array_to_fd_set() argument
635 PHP_SAFE_FD_SET(this_fd, fds); in stream_array_to_fd_set()
646 static int stream_array_from_fd_set(zval *stream_array, fd_set *fds TSRMLS_DC) in stream_array_from_fd_set()
693 if (PHP_SAFE_FD_ISSET(this_fd, fds)) { in stream_array_from_fd_set()
/PHP-5.5/ext/sockets/
H A Dsockets.c766 static int php_sock_array_to_fd_set(zval *sock_array, fd_set *fds, PHP_SOCKET *max_fd TSRMLS_DC) /*… argument
781 PHP_SAFE_FD_SET(php_sock->bsd_socket, fds);
792 static int php_sock_array_from_fd_set(zval *sock_array, fd_set *fds TSRMLS_DC) /* {{{ */
814 if (PHP_SAFE_FD_ISSET(php_sock->bsd_socket, fds)) {
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd.c1280 static int mysqlnd_stream_array_to_fd_set(MYSQLND ** conn_array, fd_set * fds, php_socket_t * max_f… argument
1299 PHP_SAFE_FD_SET(this_fd, fds);
1314 static int mysqlnd_stream_array_from_fd_set(MYSQLND ** conn_array, fd_set * fds TSRMLS_DC)
1328 if (PHP_SAFE_FD_ISSET(this_fd, fds)) {

Completed in 30 milliseconds