HomeSort by relevance Sort by last modified time
    Searched full:maxfd (Results 51 - 75 of 90) sorted by null

1 23 4

  /external/libmicrohttpd/src/testspdy/
test_request_response_with_callback.c 173 int maxfd = -1; local
213 maxfd = SPDY_get_fdset (daemon,
218 ret = select(maxfd+1, &read_fd_set, &write_fd_set, &except_fd_set, &timeout);
test_session_timeout.c 130 int maxfd = -1; local
216 maxfd = SPDY_get_fdset (daemon,
221 ret = select(maxfd+1, &read_fd_set, &write_fd_set, &except_fd_set, &timeout);
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/libmicrohttpd/src/examples/
spdy_event_loop.c 364 int maxfd = -1; local
389 maxfd = SPDY_get_fdset (daemon,
396 rc = select(maxfd+1, &read_fd_set, &write_fd_set, &except_fd_set, &timeout);
449 maxfd = SPDY_get_fdset (daemon2,
454 rc = select(maxfd+1, &read_fd_set, &write_fd_set, &except_fd_set, &timeout);
spdy_fileserver.c 277 int maxfd = -1; local
325 maxfd = SPDY_get_fdset (daemon,
330 ret = select(maxfd+1, &read_fd_set, &write_fd_set, &except_fd_set, &timeout);
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/curl/docs/examples/
fopen.c 141 int maxfd = -1; local
162 mc = curl_multi_fdset(multi_handle, &fdread, &fdwrite, &fdexcep, &maxfd);
170 /* On success the value of maxfd is guaranteed to be >= -1. We call
171 select(maxfd + 1, ...); specially in case of (maxfd == -1) there are
176 if(maxfd == -1) {
189 rc = select(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
  /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...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
popen2.py 18 MAXFD = os.sysconf('SC_OPEN_MAX')
20 MAXFD = 256
85 os.closerange(3, MAXFD)
  /prebuilts/gdb/linux-x86/lib/python2.7/
popen2.py 18 MAXFD = os.sysconf('SC_OPEN_MAX')
20 MAXFD = 256
85 os.closerange(3, MAXFD)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
popen2.py 18 MAXFD = os.sysconf('SC_OPEN_MAX')
20 MAXFD = 256
85 os.closerange(3, MAXFD)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
popen2.py 18 MAXFD = os.sysconf('SC_OPEN_MAX')
20 MAXFD = 256
85 os.closerange(3, MAXFD)
  /external/curl/docs/libcurl/
curl_multi_timeout.3 66 select(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
  /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/curl/tests/server/
sws.c 1447 curl_socket_t maxfd = (curl_socket_t)-1; local
2223 curl_socket_t maxfd = (curl_socket_t)-1; local
    [all...]
sockfilt.c 894 int maxfd = -99; local
937 maxfd = (int)sockfd;
946 maxfd = 0; /* stdin */
954 maxfd = (int)sockfd;
967 maxfd = (int)sockfd;
971 maxfd = 0;
978 maxfd = 0;
989 rc = select(maxfd + 1, &fds_read, &fds_write, &fds_err, &timeout);
    [all...]
  /hardware/ti/omap4-aah/domx/domx/omx_rpc/src/
omx_rpc.c 288 OMX_S32 maxfd = 0, status = 0; local
296 maxfd =
306 status = select(maxfd, &readfds, NULL, NULL, NULL);
  /hardware/ti/omap4xxx/domx/domx/omx_rpc/src/
omx_rpc.c 288 OMX_S32 maxfd = 0, status = 0; local
295 maxfd =
305 status = select(maxfd, &readfds, NULL, NULL, NULL);
  /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...]
  /frameworks/av/media/libstagefright/foundation/
ANetworkSession.cpp     [all...]
  /external/libvncserver/libvncserver/
main.c 587 if (select(screen->maxFd+1, &listen_fds, NULL, NULL, NULL) == -1) {
839 screen->maxFd=0;
1066 /* we don't care about maxfd here, because the server goes away */
  /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) {
  /system/bt/btif/src/
btif_hl.c 4362 int maxfd = max_org_s; local
    [all...]

Completed in 426 milliseconds

1 23 4