Searched refs:numfds (Results 1 – 9 of 9) sorted by relevance
/openssl/test/ |
H A D | asynctest.c | 259 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 D | async_wait.c | 87 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 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 I<*numfds> and the file descriptors themselves 39 descriptors are returned but I<*numfds> is still populated. It is the callers
|
H A D | ASYNC_start_job.pod | 295 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 D | ASYNC_WAIT_CTX_new.pod | 33 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 D | async.h | 66 size_t *numfds);
|
H A D | ssl.h.in | 1920 __owur int SSL_get_all_async_fds(SSL *s, OSSL_ASYNC_FD *fds, size_t *numfds);
|
/openssl/apps/lib/ |
H A D | apps.c | 3206 size_t numfds; in wait_for_async() local 3209 if (!SSL_get_all_async_fds(s, NULL, &numfds)) in wait_for_async() 3211 if (numfds == 0) in wait_for_async() 3213 fds = app_malloc(sizeof(OSSL_ASYNC_FD) * numfds, "allocate async fds"); in wait_for_async() 3214 if (!SSL_get_all_async_fds(s, fds, &numfds)) { in wait_for_async() 3220 for (i = 0; i < numfds; i++) { in wait_for_async()
|
/openssl/ssl/ |
H A D | ssl_lib.c | 2073 int SSL_get_all_async_fds(SSL *s, OSSL_ASYNC_FD *fds, size_t *numfds) in SSL_get_all_async_fds() argument 2083 return ASYNC_WAIT_CTX_get_all_fds(ctx, fds, numfds); in SSL_get_all_async_fds()
|
Completed in 190 milliseconds