Home
last modified time | relevance | path

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

/PHP-7.0/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-7.0/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-7.0/main/
H A Dfastcgi.c1433 struct pollfd fds; local
1436 fds.fd = req->fd;
1437 fds.events = POLLIN;
1438 fds.revents = 0;
1441 ret = poll(&fds, 1, 5000);
1443 if (ret > 0 && (fds.revents & POLLIN)) {
/PHP-7.0/ext/standard/
H A Dstreamsfuncs.c587 static int stream_array_to_fd_set(zval *stream_array, fd_set *fds, php_socket_t *max_fd) in stream_array_to_fd_set() argument
615 PHP_SAFE_FD_SET(this_fd, fds); in stream_array_to_fd_set()
626 static int stream_array_from_fd_set(zval *stream_array, fd_set *fds) in stream_array_from_fd_set() argument
654 if (PHP_SAFE_FD_ISSET(this_fd, fds)) { in stream_array_from_fd_set()
/PHP-7.0/ext/sockets/
H A Dsockets.c785 static int php_sock_array_to_fd_set(zval *sock_array, fd_set *fds, PHP_SOCKET *max_fd) /* {{{ */ argument
797 PHP_SAFE_FD_SET(php_sock->bsd_socket, fds);
808 static int php_sock_array_from_fd_set(zval *sock_array, fd_set *fds) /* {{{ */ argument
825 if (PHP_SAFE_FD_ISSET(php_sock->bsd_socket, fds)) {
/PHP-7.0/ext/mysqlnd/
H A Dmysqlnd.c1306 static int mysqlnd_stream_array_to_fd_set(MYSQLND ** conn_array, fd_set * fds, php_socket_t * max_f… argument
1325 PHP_SAFE_FD_SET(this_fd, fds);
1340 static int mysqlnd_stream_array_from_fd_set(MYSQLND ** conn_array, fd_set * fds) argument
1354 if (PHP_SAFE_FD_ISSET(this_fd, fds)) {

Completed in 46 milliseconds