HomeSort by relevance Sort by last modified time
    Searched defs:numfds (Results 1 - 4 of 4) sorted by null

  /external/curl/docs/examples/
multi-single.c 75 int numfds; local
78 mc = curl_multi_wait(multi_handle, NULL, 0, 1000, &numfds);
85 /* 'numfds' being zero means either a timeout or no file descriptors to
90 if(!numfds) {
91 repeats++; /* count number of repeated zero numfds */
  /external/curl/lib/
easy.c 559 int numfds = 0; local
570 /* fprintf(stderr, "poll() %d check socket %d\n", numfds, f->fd); */
572 numfds++;
579 pollrc = Curl_poll(fds, numfds, (int)ev->ms);
594 for(i = 0; i< numfds; i++) {
  /external/ltp/testcases/kernel/syscalls/epoll2/examples/
epoll-test.c 88 static int maxfds, numfds = 0; variable
151 ++numfds;
173 --numfds;
624 } while (numfds);
777 for (; numfds || (!maxconns || totconns < maxconns);) {
778 int nfds = numfds, errs = 0, diffconns = nconns - numfds;
780 while (numfds < nconns && (!maxconns || totconns < maxconns)) {
783 if (nfds == numfds) {
793 nfds = numfds;
    [all...]
  /external/python/cpython3/Modules/
socketmodule.c 3504 size_t numfds; local
    [all...]

Completed in 3135 milliseconds