max_fd           1306 ext/mysqlnd/mysqlnd.c static int mysqlnd_stream_array_to_fd_set(MYSQLND ** conn_array, fd_set * fds, php_socket_t * max_fd)
max_fd           1327 ext/mysqlnd/mysqlnd.c 			if (this_fd > *max_fd) {
max_fd           1328 ext/mysqlnd/mysqlnd.c 				*max_fd = this_fd;
max_fd           1388 ext/mysqlnd/mysqlnd.c 	php_socket_t	max_fd = 0;
max_fd           1404 ext/mysqlnd/mysqlnd.c 		set_count = mysqlnd_stream_array_to_fd_set(r_array, &rfds, &max_fd);
max_fd           1412 ext/mysqlnd/mysqlnd.c 		set_count = mysqlnd_stream_array_to_fd_set(e_array, &efds, &max_fd);
max_fd           1425 ext/mysqlnd/mysqlnd.c 	PHP_SAFE_MAX_FD(max_fd, max_set_count);
max_fd           1438 ext/mysqlnd/mysqlnd.c 	retval = php_select(max_fd + 1, &rfds, &wfds, &efds, tv_p);
max_fd           1442 ext/mysqlnd/mysqlnd.c 						errno, strerror(errno), max_fd);
max_fd            779 ext/sockets/sockets.c static int php_sock_array_to_fd_set(zval *sock_array, fd_set *fds, PHP_SOCKET *max_fd) /* {{{ */
max_fd            792 ext/sockets/sockets.c 		if (php_sock->bsd_socket > *max_fd) {
max_fd            793 ext/sockets/sockets.c 			*max_fd = php_sock->bsd_socket;
max_fd            850 ext/sockets/sockets.c 	PHP_SOCKET		max_fd = 0;
max_fd            862 ext/sockets/sockets.c 	if (r_array != NULL) sets += php_sock_array_to_fd_set(r_array, &rfds, &max_fd);
max_fd            863 ext/sockets/sockets.c 	if (w_array != NULL) sets += php_sock_array_to_fd_set(w_array, &wfds, &max_fd);
max_fd            864 ext/sockets/sockets.c 	if (e_array != NULL) sets += php_sock_array_to_fd_set(e_array, &efds, &max_fd);
max_fd            871 ext/sockets/sockets.c 	PHP_SAFE_MAX_FD(max_fd, 0); /* someone needs to make this look more like stream_socket_select */
max_fd            900 ext/sockets/sockets.c 	retval = select(max_fd+1, &rfds, &wfds, &efds, tv_p);
max_fd            600 ext/standard/streamsfuncs.c static int stream_array_to_fd_set(zval *stream_array, fd_set *fds, php_socket_t *max_fd)
max_fd            629 ext/standard/streamsfuncs.c 			if (this_fd > *max_fd) {
max_fd            630 ext/standard/streamsfuncs.c 				*max_fd = this_fd;
max_fd            740 ext/standard/streamsfuncs.c 	php_socket_t max_fd = 0;
max_fd            766 ext/standard/streamsfuncs.c 		set_count = stream_array_to_fd_set(r_array, &rfds, &max_fd);
max_fd            773 ext/standard/streamsfuncs.c 		set_count = stream_array_to_fd_set(w_array, &wfds, &max_fd);
max_fd            780 ext/standard/streamsfuncs.c 		set_count = stream_array_to_fd_set(e_array, &efds, &max_fd);
max_fd            791 ext/standard/streamsfuncs.c 	PHP_SAFE_MAX_FD(max_fd, max_set_count);
max_fd            825 ext/standard/streamsfuncs.c 	retval = php_select(max_fd+1, &rfds, &wfds, &efds, tv_p);
max_fd            829 ext/standard/streamsfuncs.c 				errno, strerror(errno), max_fd);
max_fd           1170 main/network.c PHPAPI void _php_emit_fd_setsize_warning(int max_fd)
max_fd           1182 main/network.c 		FD_SETSIZE, max_fd, (max_fd + 128) & ~127);
max_fd           1190 main/network.c 		FD_SETSIZE, max_fd, (max_fd + 1024) & ~1023);
max_fd           1201 main/network.c 	php_socket_t max_fd = SOCK_ERR;
max_fd           1208 main/network.c 		if (ufds[i].fd > max_fd)
max_fd           1209 main/network.c 			max_fd = ufds[i].fd;
max_fd           1212 main/network.c 	PHP_SAFE_MAX_FD(max_fd, nfds + 1);
max_fd           1240 main/network.c 	n = select(max_fd + 1, &rset, &wset, &eset, timeout >= 0 ? &tv : NULL);
max_fd            201 main/php_network.h PHPAPI void _php_emit_fd_setsize_warning(int max_fd);
max_fd            116 sapi/cli/php_cli_server.c 	php_socket_t max_fd;
max_fd            740 sapi/cli/php_cli_server.c 	poller->max_fd = -1;
max_fd            752 sapi/cli/php_cli_server.c 	if (fd > poller->max_fd) {
max_fd            753 sapi/cli/php_cli_server.c 		poller->max_fd = fd;
max_fd            766 sapi/cli/php_cli_server.c 	if (fd == poller->max_fd) {
max_fd            773 sapi/cli/php_cli_server.c 		poller->max_fd = fd;
max_fd            782 sapi/cli/php_cli_server.c 	return php_select(poller->max_fd + 1, &poller->active.rfds, &poller->active.wfds, NULL, tv);
max_fd            830 sapi/cli/php_cli_server.c 	const php_socket_t max_fd = poller->max_fd;
max_fd            832 sapi/cli/php_cli_server.c 	for (fd=0 ; fd<=max_fd ; fd++)  {
max_fd             35 sapi/fpm/fpm/fpm_events.h 	int (*init)(int max_fd);
max_fd             37 win32/select.c PHPAPI int php_select(int max_fd, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *tv)
max_fd             64 win32/select.c 	for (i = 0; i < max_fd; i++) {
max_fd             90 win32/select.c 		return select(max_fd, rfds, wfds, efds, tv);
max_fd             21 win32/select.h PHPAPI int php_select(int max_fd, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *tv);