Lines Matching defs:fds
1214 struct pollfd fds[] =
1223 fds[LIBDECOR_FD].fd = libdecor_get_fd(_glfw.wl.libdecor.context);
1249 if (!_glfwPollPOSIX(fds, sizeof(fds) / sizeof(fds[0]), timeout))
1255 if (fds[DISPLAY_FD].revents & POLLIN)
1264 if (fds[KEYREPEAT_FD].revents & POLLIN)
1284 if (fds[CURSOR_FD].revents & POLLIN)
1292 if (fds[LIBDECOR_FD].revents & POLLIN)
1304 int fds[2];
1306 if (pipe2(fds, O_CLOEXEC) == -1)
1314 wl_data_offer_receive(offer, mimeType, fds[1]);
1316 close(fds[1]);
1332 close(fds[0]);
1340 const ssize_t result = read(fds[0], string + length, readSize);
1351 close(fds[0]);
1358 close(fds[0]);