Searched refs:maxfd (Results 1 – 9 of 9) sorted by relevance
/titanic_44/usr/src/cmd/ssh/ssh-keyscan/ |
H A D | ssh-keyscan.c | 58 int maxfd; variable 59 #define MAXCON (maxfd - 10) 443 if (s >= maxfd) in conalloc() 469 if (s >= maxfd || fdcon[s].c_status == CS_UNUSED) in confree() 638 while (select(maxfd, r, NULL, e, &seltime) == -1 && in conloop() 642 for (i = 0; i < maxfd; i++) { in conloop() 794 maxfd = fdlim_get(1); in main() 795 if (maxfd < 0) in main() 797 if (maxfd > MAXMAXFD) in main() 798 maxfd = MAXMAXFD; in main() [all …]
|
/titanic_44/usr/src/cmd/fs.d/ |
H A D | umount.c | 572 int maxfd = OPEN_MAX; in parumount() local 597 maxfd = (int)rl.rlim_cur; in parumount() 605 maxfd = (maxfd / 2) - 6; /* 6 takes care of temporary */ in parumount() 607 if (maxfd < maxrun) in parumount() 608 maxrun = maxfd; in parumount()
|
H A D | mount.c | 914 int maxfd = OPEN_MAX; in parmount() local 932 maxfd = (int)rl.rlim_cur; in parmount() 940 maxfd = (maxfd / 2) - 6; /* 6 takes care of temporary */ in parmount() 942 if (maxfd < maxrun) in parmount() 943 maxrun = maxfd; in parmount()
|
/titanic_44/usr/src/cmd/ssh/sshd/ |
H A D | sshd.c | 833 int listen_sock, maxfd; in main() local 1300 maxfd = 0; in main() 1302 if (listen_socks[i] > maxfd) in main() 1303 maxfd = listen_socks[i]; in main() 1318 fdsetsz = howmany(maxfd+1, NFDBITS) * sizeof(fd_mask); in main() 1329 ret = select(maxfd+1, fdset, NULL, NULL, NULL); in main() 1389 if (maxfd < startup_p[0]) in main() 1390 maxfd = startup_p[0]; in main()
|
/titanic_44/usr/src/uts/common/fs/fd/ |
H A D | fdops.c | 110 int minfd, maxfd, modoff, error = 0; in fdread() local 142 maxfd = (uiop->uio_offset + uiop->uio_resid - 1)/FDSDSIZE; in fdread() 147 for (i = minfd; i < MIN(maxfd, nentries); i++) { in fdread()
|
/titanic_44/usr/src/lib/libldap5/sources/ldap/common/ |
H A D | os-ip.c | 1541 int i, rc, maxfd = 0; local 1569 if ( fds[i].lpoll_fd >= maxfd ) { 1570 maxfd = fds[i].lpoll_fd; 1577 ++maxfd; 1585 rc = iofns->liof_select( maxfd, &readfds, &writefds, NULL, tvp );
|
/titanic_44/usr/src/cmd/sendmail/src/ |
H A D | util.c | 1699 int maxfd; local 1707 maxfd = BITMAPBITS; 1709 maxfd = DtableSize; 1713 for (fd = 0; fd < maxfd; fd++)
|
/titanic_44/usr/src/lib/gss_mechs/mech_krb5/krb5/os/ |
H A D | sendto_kdc.c | 126 int maxfd; in krb5int_debug_fprint() local 188 maxfd = va_arg(args, int); in krb5int_debug_fprint() 190 for (i = 0; i < maxfd; i++) { in krb5int_debug_fprint()
|
/titanic_44/usr/src/uts/common/os/ |
H A D | fio.c | 337 flist_grow(int maxfd) in flist_grow() argument 344 for (newcnt = 1; newcnt <= maxfd; newcnt = (newcnt << 1) | 1) in flist_grow()
|