Searched refs:numfds (Results 1 - 8 of 8) sorted by relevance

/freebsd-13-stable/crypto/openssl/crypto/async/
H A Dasync_wait.c89 size_t *numfds)
94 *numfds = 0;
105 (*numfds)++;
88 ASYNC_WAIT_CTX_get_all_fds(ASYNC_WAIT_CTX *ctx, OSSL_ASYNC_FD *fd, size_t *numfds) argument
/freebsd-13-stable/crypto/openssl/include/openssl/
H A Dasync.h54 size_t *numfds);
H A Dssl.h1829 __owur int SSL_get_all_async_fds(SSL *s, OSSL_ASYNC_FD *fds, size_t *numfds);
/freebsd-13-stable/contrib/ofed/infiniband-diags/src/
H A Drdma-ndd.c309 int numfds = 1; local
314 numfds = 2;
334 rc = poll(fds, numfds, -1);
/freebsd-13-stable/lib/libthr/thread/
H A Dthr_syscalls.c487 __thr_select(int numfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, argument
495 ret = __sys_select(numfds, readfds, writefds, exceptfds, timeout);
/freebsd-13-stable/crypto/openssl/apps/
H A Dapps.c2694 size_t numfds; local
2697 if (!SSL_get_all_async_fds(s, NULL, &numfds))
2699 if (numfds == 0)
2701 fds = app_malloc(sizeof(OSSL_ASYNC_FD) * numfds, "allocate async fds");
2702 if (!SSL_get_all_async_fds(s, fds, &numfds)) {
2708 for (i = 0; i < numfds; i++) {
/freebsd-13-stable/usr.bin/truss/
H A Dsyscalls.c2071 int numfds = args[sc->offset + 1]; local
2072 size_t bytes = sizeof(struct pollfd) * numfds;
2080 for (i = 0; i < numfds; i++) {
2098 int numfds = args[0]; local
2099 size_t bytes = _howmany(numfds, _NFDBITS) * _NFDBITS;
2107 for (i = 0; i < numfds; i++) {
/freebsd-13-stable/crypto/openssl/ssl/
H A Dssl_lib.c1655 int SSL_get_all_async_fds(SSL *s, OSSL_ASYNC_FD *fds, size_t *numfds) argument
1661 return ASYNC_WAIT_CTX_get_all_fds(ctx, fds, numfds);

Completed in 271 milliseconds