HomeSort by relevance Sort by last modified time
    Searched defs:maxfd (Results 51 - 68 of 68) sorted by null

1 23

  /art/runtime/jdwp/
jdwp_adb.cc 308 int maxfd = -1; local
317 if (maxfd < fd) {
318 maxfd = fd;
324 if (maxfd < fd) {
325 maxfd = fd;
331 if (maxfd < fd) {
332 maxfd = fd;
338 if (maxfd < 0) {
355 selCount = select(maxfd + 1, &readfds, nullptr, nullptr, nullptr);
  /external/curl/docs/examples/
fopen.c 145 int maxfd = -1; local
166 mc = curl_multi_fdset(multi_handle, &fdread, &fdwrite, &fdexcep, &maxfd);
173 /* On success the value of maxfd is guaranteed to be >= -1. We call
174 select(maxfd + 1, ...); specially in case of (maxfd == -1) there are
179 if(maxfd == -1) {
192 rc = select(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
http2-upload.c 287 int maxfd = -1; local
309 mc = curl_multi_fdset(multi_handle, &fdread, &fdwrite, &fdexcep, &maxfd);
316 /* On success the value of maxfd is guaranteed to be >= -1. We call
317 select(maxfd + 1, ...); specially in case of (maxfd == -1) there are
322 if(maxfd == -1) {
335 rc = select(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
  /external/curl/tests/libtest/
lib1900.c 172 int maxfd = -99; local
219 curl_multi_fdset(m, &rd, &wr, &exc, &maxfd);
221 /* At this point, maxfd is guaranteed to be greater or equal than -1. */
234 select_test(maxfd+1, &rd, &wr, &exc, &interval);
  /external/libdaemon/libdaemon/
dfork.c 493 int fd, maxfd; local
567 maxfd = (int) rl.rlim_max;
569 maxfd = sysconf(_SC_OPEN_MAX);
571 for (fd = 3; fd < maxfd; fd++) {
  /external/libmicrohttpd/src/examples/
mhd2spdy_spdy.c 993 int maxfd = 0; local
1016 if(maxfd < glob_opt.spdy_connection->fd) maxfd = glob_opt.spdy_connection->fd;
1043 if(maxfd < connection->fd) maxfd = connection->fd;
1051 return maxfd;
  /external/dnsmasq/src/
dnsmasq.c 578 int maxfd = -1; local
589 if ((t.tv_sec = set_dns_listeners(now, &rset, &maxfd)) != 0)
595 set_android_listeners(&rset, &maxfd);
608 set_dbus_listeners(&maxfd, &rset, &wset, &eset);
615 bump_maxfd(daemon->dhcpfd, &maxfd);
621 bump_maxfd(daemon->netlinkfd, &maxfd);
625 bump_maxfd(piperead, &maxfd);
634 bump_maxfd(daemon->helperfd, &maxfd);
644 set_log_writer(&wset, &maxfd);
646 if (select(maxfd+1, &rset, &wset, &eset, tp) < 0
1310 int maxfd = fd; local
    [all...]
  /external/libmicrohttpd/src/testspdy/
test_new_connection.c 914 int maxfd = -1; local
947 maxfd = SPDY_get_fdset (daemon,
952 ret = select(maxfd+1, &read_fd_set, &write_fd_set, &except_fd_set, &timeout);
test_notls.c 877 int maxfd = -1; local
913 maxfd = SPDY_get_fdset (daemon,
918 ret = select(maxfd+1, &read_fd_set, &write_fd_set, &except_fd_set, &timeout);
test_request_response.c 936 int maxfd = -1; local
969 maxfd = SPDY_get_fdset (daemon,
974 ret = select(maxfd+1, &read_fd_set, &write_fd_set, &except_fd_set, &timeout);
  /external/curl/tests/server/
sockfilt.c 915 int maxfd = -99; local
958 maxfd = (int)sockfd;
967 maxfd = 0; /* stdin */
975 maxfd = (int)sockfd;
988 maxfd = (int)sockfd;
992 maxfd = 0;
999 maxfd = 0;
1010 rc = select(maxfd + 1, &fds_read, &fds_write, &fds_err, &timeout);
    [all...]
sws.c 1452 curl_socket_t maxfd = (curl_socket_t)-1; local
2229 curl_socket_t maxfd = (curl_socket_t)-1; local
    [all...]
  /external/libmicrohttpd/src/spdy2http/
proxy.c 984 int maxfd = -1; local
1104 maxfd = SPDY_get_fdset (daemon,
1108 assert(-1 != maxfd);
1118 if(maxfd_curl > maxfd)
1119 maxfd = maxfd_curl;
1122 ret = select(maxfd+1, &rs, &ws, &es, &timeout);
    [all...]
  /external/toybox/toys/pending/
dhcp6.c 586 int maxfd = TT.sock; local
590 if ((TT.retval = select(maxfd + 1, &rfds, NULL, NULL, &TT.tv)) < 0) {
dhcp.c 1320 int maxfd = (sigfd.rd > state->sockfd)? sigfd.rd : state->sockfd; local
    [all...]
dhcpd.c 1683 int maxfd = (sigfd.rd > gstate.listensock)? sigfd.rd : gstate.listensock; local
    [all...]
  /system/bt/btif/src/
btif_hl.c 4362 int maxfd = max_org_s; local
    [all...]
  /external/curl/lib/
urldata.h 689 curl_socket_t maxfd; member in struct:SingleRequest
    [all...]

Completed in 2512 milliseconds

1 23