Searched refs:fd_mask (Results 1 – 20 of 20) sorted by relevance
/external/libevent/ |
D | select.c | 64 typedef unsigned long fd_mask; typedef 68 #define NFDBITS (sizeof(fd_mask)*8) 76 (DIV_ROUNDUP(n, NFDBITS) * sizeof(fd_mask)) 266 if (fdsz < (int)sizeof(fd_mask)) in select_add() 267 fdsz = (int)sizeof(fd_mask); in select_add()
|
D | config.h.in | 76 /* Define to 1 if the system has the type `fd_mask'. */
|
D | configure.ac | 651 AC_CHECK_TYPES([fd_mask], , ,
|
D | ChangeLog-1.4 | 34 o Fix compilation on Android, which forgot to define fd_mask in its sys/select.h
|
D | ChangeLog-2.0 | 1045 o Fix compilation on Android, which forgot to define fd_mask in its sys/select.h
|
/external/openssh/openbsd-compat/ |
D | bsd-poll.c | 59 if ((readfds = calloc(nmemb, sizeof(fd_mask))) == NULL || in poll() 60 (writefds = calloc(nmemb, sizeof(fd_mask))) == NULL || in poll() 61 (exceptfds = calloc(nmemb, sizeof(fd_mask))) == NULL) { in poll()
|
/external/python/cpython2/Include/ |
D | pyport.h | 844 typedef long fd_mask; 846 #define NFDBITS (sizeof(fd_mask) * NBBY) /* bits per mask */ 852 fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)];
|
/external/openssh/ |
D | ssh-keyscan.c | 625 r = xcalloc(read_wait_nfdset, sizeof(fd_mask)); in conloop() 626 e = xcalloc(read_wait_nfdset, sizeof(fd_mask)); in conloop() 627 memcpy(r, read_wait, read_wait_nfdset * sizeof(fd_mask)); in conloop() 628 memcpy(e, read_wait, read_wait_nfdset * sizeof(fd_mask)); in conloop() 811 read_wait = xcalloc(read_wait_nfdset, sizeof(fd_mask)); in main()
|
D | ssh-pkcs11-helper.c | 304 set_size = howmany(max + 1, NFDBITS) * sizeof(fd_mask); in main()
|
D | defines.h | 391 typedef unsigned long int fd_mask; typedef
|
D | sftp-server.c | 1631 rset = xcalloc(howmany(max + 1, NFDBITS), sizeof(fd_mask)); in sftp_server_main() 1632 wset = xcalloc(howmany(max + 1, NFDBITS), sizeof(fd_mask)); in sftp_server_main() 1641 set_size = howmany(max + 1, NFDBITS) * sizeof(fd_mask); in sftp_server_main()
|
D | sshconnect.c | 360 sizeof(fd_mask)); in timeout_connect() 559 fdsetsz = howmany(connection_in + 1, NFDBITS) * sizeof(fd_mask); in ssh_exchange_identification()
|
D | packet.c | 1410 NFDBITS), sizeof(fd_mask)); in ssh_packet_read_seqnr() 1442 NFDBITS) * sizeof(fd_mask)); in ssh_packet_read_seqnr() 2234 NFDBITS), sizeof(fd_mask)); in ssh_packet_write_wait() 2243 NFDBITS) * sizeof(fd_mask)); in ssh_packet_write_wait()
|
D | channels.c | 2269 if (nfdset && SIZE_MAX / nfdset < sizeof(fd_mask)) 2271 sz = nfdset * sizeof(fd_mask); 2275 *readsetp = xreallocarray(*readsetp, nfdset, sizeof(fd_mask)); 2276 *writesetp = xreallocarray(*writesetp, nfdset, sizeof(fd_mask));
|
D | ssh-agent.c | 1030 sz = howmany(n+1, NFDBITS) * sizeof(fd_mask); in prepare_select()
|
D | sshd.c | 1177 sizeof(fd_mask));
|
D | config.h.in | 457 /* Define to 1 if the system has the type `fd_mask'. */
|
D | configure.ac | 1925 AC_CHECK_TYPES([fd_mask], [], [], [[
|
/external/python/cpython2/Lib/lib2to3/tests/data/ |
D | infinite_recursion.py | 2401 fd_mask = __int32_t variable
|
/external/python/cpython3/Lib/lib2to3/tests/data/ |
D | infinite_recursion.py | 2401 fd_mask = __int32_t variable
|