pollfd           1421 main/fastcgi.c 					struct pollfd fds;
pollfd            121 main/php_network.h typedef struct pollfd php_pollfd;
pollfd             52 sapi/fpm/fpm/events/devpoll.c static struct pollfd *pollfds = NULL;
pollfd             53 sapi/fpm/fpm/events/devpoll.c static struct pollfd *active_pollfds = NULL;
pollfd             89 sapi/fpm/fpm/events/devpoll.c 	pollfds = malloc(sizeof(struct pollfd) * max);
pollfd             94 sapi/fpm/fpm/events/devpoll.c 	memset(pollfds, 0, sizeof(struct pollfd) * max);
pollfd            102 sapi/fpm/fpm/events/devpoll.c 	active_pollfds = malloc(sizeof(struct pollfd) * max);
pollfd            108 sapi/fpm/fpm/events/devpoll.c 	memset(active_pollfds, 0, sizeof(struct pollfd) * max);
pollfd            203 sapi/fpm/fpm/events/devpoll.c 	struct pollfd pollfd;
pollfd            206 sapi/fpm/fpm/events/devpoll.c 	pollfd.fd = ev->fd;
pollfd            207 sapi/fpm/fpm/events/devpoll.c 	pollfd.events = POLLIN;
pollfd            208 sapi/fpm/fpm/events/devpoll.c 	pollfd.revents = 0;
pollfd            211 sapi/fpm/fpm/events/devpoll.c 	if (write(dpfd, &pollfd, sizeof(struct pollfd)) != sizeof(struct pollfd)) {
pollfd            228 sapi/fpm/fpm/events/devpoll.c 	struct pollfd pollfd;
pollfd            231 sapi/fpm/fpm/events/devpoll.c 	pollfd.fd = ev->fd;
pollfd            232 sapi/fpm/fpm/events/devpoll.c 	pollfd.events = POLLIN | POLLREMOVE;
pollfd            233 sapi/fpm/fpm/events/devpoll.c 	pollfd.revents = 0;
pollfd            236 sapi/fpm/fpm/events/devpoll.c 	if (write(dpfd, &pollfd, sizeof(struct pollfd)) != sizeof(struct pollfd)) {
pollfd             48 sapi/fpm/fpm/events/poll.c static struct pollfd *pollfds = NULL;
pollfd             49 sapi/fpm/fpm/events/poll.c static struct pollfd *active_pollfds = NULL;
pollfd             81 sapi/fpm/fpm/events/poll.c 	pollfds = malloc(sizeof(struct pollfd) * max);
pollfd             86 sapi/fpm/fpm/events/poll.c 	memset(pollfds, 0, sizeof(struct pollfd) * max);
pollfd             94 sapi/fpm/fpm/events/poll.c 	active_pollfds = malloc(sizeof(struct pollfd) * max);
pollfd            100 sapi/fpm/fpm/events/poll.c 	memset(active_pollfds, 0, sizeof(struct pollfd) * max);
pollfd            140 sapi/fpm/fpm/events/poll.c 		memcpy(active_pollfds, pollfds, sizeof(struct pollfd) * npollfds);
pollfd            102 sapi/phpdbg/phpdbg_io.c 	struct pollfd pfd;