Home
last modified time | relevance | path

Searched refs:numfds (Results 1 – 9 of 9) sorted by relevance

/openssl/test/
H A Dasynctest.c259 size_t numfds, numdelfds; in test_ASYNC_WAIT_CTX_get_all_fds() local
266 || !ASYNC_WAIT_CTX_get_all_fds(waitctx, NULL, &numfds) in test_ASYNC_WAIT_CTX_get_all_fds()
267 || numfds != 0 in test_ASYNC_WAIT_CTX_get_all_fds()
270 || numfds != 0 in test_ASYNC_WAIT_CTX_get_all_fds()
276 || numfds != 1 in test_ASYNC_WAIT_CTX_get_all_fds()
277 || !ASYNC_WAIT_CTX_get_all_fds(waitctx, &fd, &numfds) in test_ASYNC_WAIT_CTX_get_all_fds()
282 || numfds != 1 in test_ASYNC_WAIT_CTX_get_all_fds()
291 || numfds != 0 in test_ASYNC_WAIT_CTX_get_all_fds()
294 || numfds != 0 in test_ASYNC_WAIT_CTX_get_all_fds()
303 || numfds != 0 in test_ASYNC_WAIT_CTX_get_all_fds()
[all …]
/openssl/crypto/async/
H A Dasync_wait.c87 size_t *numfds) in ASYNC_WAIT_CTX_get_all_fds() argument
92 *numfds = 0; in ASYNC_WAIT_CTX_get_all_fds()
103 (*numfds)++; in ASYNC_WAIT_CTX_get_all_fds()
/openssl/doc/man3/
H A DSSL_get_all_async_fds.pod18 int SSL_get_all_async_fds(SSL *s, OSSL_ASYNC_FD *fd, size_t *numfds);
37 descriptors returned is stored in I<*numfds> and the file descriptors themselves
39 descriptors are returned but I<*numfds> is still populated. It is the callers
H A DASYNC_start_job.pod295 size_t numfds;
325 if (!ASYNC_WAIT_CTX_get_all_fds(ctx, NULL, &numfds)
326 || numfds > 1) {
330 ASYNC_WAIT_CTX_get_all_fds(ctx, &waitfd, &numfds);
H A DASYNC_WAIT_CTX_new.pod33 size_t *numfds);
67 be stored in I<*numfds>. It is the caller's responsibility to ensure that
70 return no file descriptors but will still populate I<*numfds>. Therefore,
/openssl/include/openssl/
H A Dasync.h66 size_t *numfds);
H A Dssl.h.in1920 __owur int SSL_get_all_async_fds(SSL *s, OSSL_ASYNC_FD *fds, size_t *numfds);
/openssl/apps/lib/
H A Dapps.c3203 size_t numfds; in wait_for_async() local
3206 if (!SSL_get_all_async_fds(s, NULL, &numfds)) in wait_for_async()
3208 if (numfds == 0) in wait_for_async()
3210 fds = app_malloc(sizeof(OSSL_ASYNC_FD) * numfds, "allocate async fds"); in wait_for_async()
3211 if (!SSL_get_all_async_fds(s, fds, &numfds)) { in wait_for_async()
3217 for (i = 0; i < numfds; i++) { in wait_for_async()
/openssl/ssl/
H A Dssl_lib.c2070 int SSL_get_all_async_fds(SSL *s, OSSL_ASYNC_FD *fds, size_t *numfds) in SSL_get_all_async_fds() argument
2080 return ASYNC_WAIT_CTX_get_all_fds(ctx, fds, numfds); in SSL_get_all_async_fds()

Completed in 64 milliseconds