Searched refs:numfds (Results 1 – 9 of 9) sorted by relevance
/openssl-master/test/ |
A D | asynctest.c | 257 size_t numfds, numdelfds; in test_ASYNC_WAIT_CTX_get_all_fds() local 264 || !ASYNC_WAIT_CTX_get_all_fds(waitctx, NULL, &numfds) in test_ASYNC_WAIT_CTX_get_all_fds() 265 || numfds != 0 in test_ASYNC_WAIT_CTX_get_all_fds() 268 || numfds != 0 in test_ASYNC_WAIT_CTX_get_all_fds() 274 || numfds != 1 in test_ASYNC_WAIT_CTX_get_all_fds() 275 || !ASYNC_WAIT_CTX_get_all_fds(waitctx, &fd, &numfds) in test_ASYNC_WAIT_CTX_get_all_fds() 280 || numfds != 1 in test_ASYNC_WAIT_CTX_get_all_fds() 289 || numfds != 0 in test_ASYNC_WAIT_CTX_get_all_fds() 292 || numfds != 0 in test_ASYNC_WAIT_CTX_get_all_fds() 301 || numfds != 0 in test_ASYNC_WAIT_CTX_get_all_fds() [all …]
|
/openssl-master/crypto/async/ |
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()
|
/openssl-master/doc/man3/ |
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
|
A D | ASYNC_start_job.pod | 258 size_t numfds; 286 if (!ASYNC_WAIT_CTX_get_all_fds(ctx, NULL, &numfds) 287 || numfds > 1) { 291 ASYNC_WAIT_CTX_get_all_fds(ctx, &waitfd, &numfds);
|
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-master/include/openssl/ |
A D | async.h | 66 size_t *numfds);
|
A D | ssl.h.in | 1861 __owur int SSL_get_all_async_fds(SSL *s, OSSL_ASYNC_FD *fds, size_t *numfds);
|
/openssl-master/apps/lib/ |
A D | apps.c | 3086 size_t numfds; in wait_for_async() local 3089 if (!SSL_get_all_async_fds(s, NULL, &numfds)) in wait_for_async() 3091 if (numfds == 0) in wait_for_async() 3093 fds = app_malloc(sizeof(OSSL_ASYNC_FD) * numfds, "allocate async fds"); in wait_for_async() 3094 if (!SSL_get_all_async_fds(s, fds, &numfds)) { in wait_for_async() 3100 for (i = 0; i < numfds; i++) { in wait_for_async()
|
/openssl-master/ssl/ |
A D | ssl_lib.c | 1674 int SSL_get_all_async_fds(SSL *s, OSSL_ASYNC_FD *fds, size_t *numfds) in SSL_get_all_async_fds() argument 1680 return ASYNC_WAIT_CTX_get_all_fds(ctx, fds, numfds); in SSL_get_all_async_fds()
|
Completed in 33 milliseconds