| /xsrc/external/mit/xorg-server/dist/include/ |
| H A D | xserver_poll.h | 42 struct pollfd struct 51 int xserver_poll (struct pollfd *pArray, nfds_t n_fds, int timeout);
|
| /xsrc/external/mit/mesa-demos/dist/src/egl/eglut/ |
| H A D | eglut_wayland.c | 179 struct pollfd pollfd; local in function:_eglutNativeEventLoop 182 pollfd.fd = wl_display_get_fd(display.display); 183 pollfd.events = POLLIN; 184 pollfd.revents = 0; 189 if (!(pollfd.events & POLLOUT)) { 205 pollfd.events |= POLLOUT; /* need to wait until we can flush */ 207 pollfd.events &= ~POLLOUT; /* successfully flushed */ 209 if (poll(&pollfd, 1, -1) == -1) 212 if (pollfd [all...] |
| /xsrc/external/mit/xorg-server/dist/os/ |
| H A D | xserver_poll.c | 11 struct pollfd 18 int poll (struct pollfd *pArray, unsigned long n_fds, int timeout) 104 (struct pollfd *pArray, 111 register struct pollfd *pCur; /* current array element */ 207 (struct pollfd *pArray, 214 register struct pollfd *pCur; /* current array element */ 244 (struct pollfd *pArray, unsigned long n_fds, int timeout) 258 assert (pArray != (struct pollfd *) NULL);
|
| H A D | ospoll.c | 114 struct pollfd *fds; 386 struct pollfd *new_fds; 575 struct pollfd events[MAX_EVENTS]; 579 struct pollfd *ev = &events[i];
|
| /xsrc/external/mit/MesaLib.old/dist/src/freedreno/vulkan/ |
| H A D | tu_fence.c | 199 * Initialize a pollfd array from fences. 205 struct pollfd *fds) 249 * Poll a pollfd array. 252 tu_fence_poll_fds(struct pollfd *fds, nfds_t nfds, uint64_t *timeout_ns) 278 * Update a pollfd array and the fence states. This should be called after a 285 struct pollfd *fds) 329 struct pollfd stack_fds[8]; 330 struct pollfd *fds = stack_fds; 338 /* set up pollfd array and start polling */
|
| /xsrc/external/mit/libdrm/dist/ |
| H A D | libsync.h | 63 struct pollfd fds;
|
| /xsrc/external/mit/xorg-server/dist/hw/xfree86/os-support/shared/ |
| H A D | sigio.c | 87 static struct pollfd *xf86SigIOFds; 93 struct pollfd *n; 95 n = realloc(xf86SigIOFds, (xf86SigIONum + 1) * sizeof (struct pollfd)); 112 memmove(&xf86SigIOFds[i], &xf86SigIOFds[i+1], (xf86SigIONum - i - 1) * sizeof (struct pollfd));
|
| H A D | posix_tty.c | 396 struct pollfd poll_fd; 427 struct pollfd poll_fd;
|
| /xsrc/external/mit/xorg-server/dist/test/bigreq/ |
| H A D | request-length.c | 72 struct pollfd pfd = {
|
| /xsrc/external/mit/MesaLib/dist/src/util/ |
| H A D | libsync.h | 103 struct pollfd fds = {0};
|
| /xsrc/external/mit/libXt/dist/src/ |
| H A D | NextEvent.c | 227 struct pollfd *fdlist; 228 struct pollfd *stack; 278 wf->fdlist = (struct pollfd *) 279 XtStackAlloc(sizeof(struct pollfd) * (size_t) wf->fdlistlen, 284 (Cardinal) sizeof(struct pollfd)); 288 struct pollfd *fdlp = wf->fdlist; 392 struct pollfd *fdlp; 593 struct pollfd fdlist[XT_DEFAULT_FDLIST_SIZE];
|
| /xsrc/external/mit/luit/dist/ |
| H A D | sys.c | 102 struct pollfd pfd[1]; 140 struct pollfd pfd[2];
|
| H A D | acinclude.m4 | 41 struct pollfd myfds;
|
| /xsrc/external/mit/libdrm/dist/tests/exynos/ |
| H A D | exynos_fimg2d_event.c | 46 struct pollfd fds;
|
| /xsrc/external/mit/MesaLib/dist/src/virtio/vulkan/ |
| H A D | vn_renderer_vtest.c | 830 struct pollfd pollfd = { local in function:sync_wait_poll 836 ret = poll(&pollfd, 1, poll_timeout); 839 if (ret < 0 || (ret > 0 && !(pollfd.revents & POLLIN))) {
|
| H A D | vn_renderer_virtgpu.c | 209 struct pollfd pollfd = { local in function:sim_syncobj_poll 215 ret = poll(&pollfd, 1, poll_timeout); 218 if (ret < 0 || (ret > 0 && !(pollfd.revents & POLLIN))) {
|
| /xsrc/external/mit/xorg-server.old/dist/hw/sun/ |
| H A D | sun.h | 87 # define usleep(usec) poll((struct pollfd *) 0, (size_t) 0, usec / 1000)
|
| /xsrc/external/mit/xorg-server/dist/hw/sun/ |
| H A D | sun.h | 87 # define usleep(usec) poll((struct pollfd *) 0, (size_t) 0, usec / 1000)
|
| /xsrc/external/mit/libX11/dist/src/ |
| H A D | XlibInt.c | 131 struct pollfd *pfp; 133 pfp = Xmalloc(POLLFD_CACHE_SIZE * sizeof(struct pollfd)); 149 struct pollfd *pfp = (struct pollfd *)dpy->filedes; 164 struct pollfd *pfp = (struct pollfd *)dpy->filedes;
|
| /xsrc/external/mit/xorg-server/dist/hw/xfree86/drivers/modesetting/ |
| H A D | pageflip.c | 44 struct pollfd p = { .fd = ms->fd, .events = POLLIN };
|
| /xsrc/external/mit/xf86-video-intel-2014/dist/tools/ |
| H A D | virtual.c | 176 struct pollfd *pfd; 483 struct pollfd *pfd; 487 ctx->pfd = malloc(2*sizeof(struct pollfd)); 499 pfd = memset(&ctx->pfd[ctx->nfd++], 0, sizeof(struct pollfd)); 525 struct pollfd *pfd; 531 ctx->pfd = realloc(ctx->pfd, 2*ctx->nfd*sizeof(struct pollfd)); 536 pfd = memset(&ctx->pfd[ctx->nfd++], 0, sizeof(struct pollfd)); 1898 struct pollfd pfd; 2811 struct pollfd pfd; 2965 struct pollfd pf [all...] |
| /xsrc/external/mit/MesaLib/dist/src/vulkan/wsi/ |
| H A D | wsi_common_wayland.c | 1026 struct pollfd pollfd = { local in function:wsi_wl_swapchain_acquire_next_image 1031 ret = ppoll(&pollfd, 1, &rel_timeout, NULL);
|
| /xsrc/external/mit/libxcb/dist/src/ |
| H A D | xcb_conn.c | 470 struct pollfd fd;
|
| /xsrc/external/mit/xf86-video-amdgpu/dist/src/ |
| H A D | amdgpu_present.c | 104 struct pollfd p = { .fd = pAMDGPUEnt->fd, .events = POLLIN };
|
| /xsrc/external/mit/xf86-video-ati-kms/dist/src/ |
| H A D | radeon_present.c | 102 struct pollfd p = { .fd = pRADEONEnt->fd, .events = POLLIN };
|