Searched refs:numfds (Results 1 – 11 of 11) sorted by relevance
| /freebsd-13.1/crypto/openssl/crypto/async/ |
| H A D | async_wait.c | 89 size_t *numfds) in ASYNC_WAIT_CTX_get_all_fds() argument 94 *numfds = 0; in ASYNC_WAIT_CTX_get_all_fds() 105 (*numfds)++; in ASYNC_WAIT_CTX_get_all_fds()
|
| /freebsd-13.1/crypto/openssl/doc/man3/ |
| H A D | SSL_get_all_async_fds.pod | 18 int SSL_get_all_async_fds(SSL *s, OSSL_ASYNC_FD *fd, size_t *numfds); 37 descriptors returned is stored in B<*numfds> and the file descriptors themselves 39 descriptors are returned but B<*numfds> is still populated. It is the callers
|
| H A D | ASYNC_WAIT_CTX_new.pod | 24 size_t *numfds); 50 B<*numfds>. It is the caller's responsibility to ensure that sufficient memory 53 descriptors but will still populate B<*numfds>. Therefore, application code is
|
| H A D | ASYNC_start_job.pod | 254 size_t numfds; 282 if (!ASYNC_WAIT_CTX_get_all_fds(ctx, NULL, &numfds) 283 || numfds > 1) { 287 ASYNC_WAIT_CTX_get_all_fds(ctx, &waitfd, &numfds);
|
| /freebsd-13.1/contrib/ofed/infiniband-diags/src/ |
| H A D | rdma-ndd.c | 309 int numfds = 1; in monitor() local 314 numfds = 2; in monitor() 334 rc = poll(fds, numfds, -1); in monitor()
|
| /freebsd-13.1/crypto/openssl/include/openssl/ |
| H A D | async.h | 54 size_t *numfds);
|
| H A D | ssl.h | 1823 __owur int SSL_get_all_async_fds(SSL *s, OSSL_ASYNC_FD *fds, size_t *numfds);
|
| /freebsd-13.1/lib/libthr/thread/ |
| H A D | thr_syscalls.c | 487 __thr_select(int numfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, in __thr_select() argument 495 ret = __sys_select(numfds, readfds, writefds, exceptfds, timeout); in __thr_select()
|
| /freebsd-13.1/crypto/openssl/apps/ |
| H A D | apps.c | 2700 size_t numfds; in wait_for_async() local 2703 if (!SSL_get_all_async_fds(s, NULL, &numfds)) in wait_for_async() 2705 if (numfds == 0) in wait_for_async() 2707 fds = app_malloc(sizeof(OSSL_ASYNC_FD) * numfds, "allocate async fds"); in wait_for_async() 2708 if (!SSL_get_all_async_fds(s, fds, &numfds)) { in wait_for_async() 2714 for (i = 0; i < numfds; i++) { in wait_for_async()
|
| /freebsd-13.1/usr.bin/truss/ |
| H A D | syscalls.c | 2083 int numfds = args[sc->offset + 1]; in print_arg() local 2084 size_t bytes = sizeof(struct pollfd) * numfds; in print_arg() 2092 for (i = 0; i < numfds; i++) { in print_arg() 2110 int numfds = args[0]; in print_arg() local 2111 size_t bytes = _howmany(numfds, _NFDBITS) * _NFDBITS; in print_arg() 2119 for (i = 0; i < numfds; i++) { in print_arg()
|
| /freebsd-13.1/crypto/openssl/ssl/ |
| H A D | ssl_lib.c | 1655 int SSL_get_all_async_fds(SSL *s, OSSL_ASYNC_FD *fds, size_t *numfds) in SSL_get_all_async_fds() argument 1661 return ASYNC_WAIT_CTX_get_all_fds(ctx, fds, numfds); in SSL_get_all_async_fds()
|