HomeSort by: relevance | last modified time | path
    Searched defs:pollfds (Results 1 - 5 of 5) sorted by relevancy

  /src/external/bsd/libbind/dist/isc/
eventlib.c 92 ctx->pollfds = NULL;
781 fds = &(ctx->pollfds[ctx->firstfd]);
793 if (ctx->pollfds[i].fd < 0)
818 void *pollfds, *fdTable; local
829 pollfds = realloc(ctx->pollfds, maxnfds * sizeof(*ctx->pollfds));
830 if (pollfds != NULL)
831 ctx->pollfds = pollfds;
    [all...]
eventlib_p.h 234 struct pollfd *pollfds; /* Allocated as needed */ member in struct:__anon7190
  /src/external/bsd/wpa/dist/src/utils/
eloop.c 83 size_t max_poll_fds; /* number of pollfds currently allocated */
84 struct pollfd *pollfds; member in struct:eloop_data
300 n = os_realloc_array(eloop.pollfds, nmax,
306 eloop.pollfds = n;
446 struct pollfd *pollfds,
462 pollfds[nxt].fd = fd;
463 pollfds[nxt].events = POLLIN;
464 pollfds[nxt].revents = 0;
465 pollfds_map[fd] = &(pollfds[nxt]);
480 pfd = &(pollfds[nxt])
    [all...]
  /src/lib/libc/isc/
eventlib_p.h 234 struct pollfd *pollfds; /* Allocated as needed */ member in struct:__anon376
  /src/usr.sbin/rpcbind/
rpcb_svc_com.c 1108 struct pollfd *pollfds; local
1117 pollfds = NULL;
1123 if (reallocarr(&pollfds,
1124 newfdcount, sizeof(*pollfds)) != 0) {
1126 syslog(LOG_ERR, "Cannot allocate pollfds");
1132 p = pollfds;
1142 nfds = p - pollfds;
1148 for (i = 0, p = pollfds; i < nfds; i++, p++)
1155 poll_ret = rump_sys_poll(pollfds, nfds, 30 * 1000);
1157 poll_ret = poll(pollfds, nfds, 30 * 1000)
    [all...]

Completed in 67 milliseconds