/third_party/openssl/include/openssl/ |
D | async.h | 39 typedef struct async_wait_ctx_st ASYNC_WAIT_CTX; typedef 56 ASYNC_WAIT_CTX *ASYNC_WAIT_CTX_new(void); 57 void ASYNC_WAIT_CTX_free(ASYNC_WAIT_CTX *ctx); 58 int ASYNC_WAIT_CTX_set_wait_fd(ASYNC_WAIT_CTX *ctx, const void *key, 61 void (*cleanup)(ASYNC_WAIT_CTX *, const void *, 63 int ASYNC_WAIT_CTX_get_fd(ASYNC_WAIT_CTX *ctx, const void *key, 65 int ASYNC_WAIT_CTX_get_all_fds(ASYNC_WAIT_CTX *ctx, OSSL_ASYNC_FD *fd, 67 int ASYNC_WAIT_CTX_get_callback(ASYNC_WAIT_CTX *ctx, 70 int ASYNC_WAIT_CTX_set_callback(ASYNC_WAIT_CTX *ctx, 73 int ASYNC_WAIT_CTX_set_status(ASYNC_WAIT_CTX *ctx, int status); [all …]
|
/third_party/openssl/ohos_lite/include/openssl/ |
D | async.h | 33 typedef struct async_wait_ctx_st ASYNC_WAIT_CTX; typedef 44 ASYNC_WAIT_CTX *ASYNC_WAIT_CTX_new(void); 45 void ASYNC_WAIT_CTX_free(ASYNC_WAIT_CTX *ctx); 46 int ASYNC_WAIT_CTX_set_wait_fd(ASYNC_WAIT_CTX *ctx, const void *key, 49 void (*cleanup)(ASYNC_WAIT_CTX *, const void *, 51 int ASYNC_WAIT_CTX_get_fd(ASYNC_WAIT_CTX *ctx, const void *key, 53 int ASYNC_WAIT_CTX_get_all_fds(ASYNC_WAIT_CTX *ctx, OSSL_ASYNC_FD *fd, 55 int ASYNC_WAIT_CTX_get_changed_fds(ASYNC_WAIT_CTX *ctx, OSSL_ASYNC_FD *addfd, 58 int ASYNC_WAIT_CTX_clear_fd(ASYNC_WAIT_CTX *ctx, const void *key); 63 int ASYNC_start_job(ASYNC_JOB **job, ASYNC_WAIT_CTX *ctx, int *ret, [all …]
|
/third_party/openssl/crypto/async/ |
D | async_wait.c | 15 ASYNC_WAIT_CTX *ASYNC_WAIT_CTX_new(void) in ASYNC_WAIT_CTX_new() 17 return OPENSSL_zalloc(sizeof(ASYNC_WAIT_CTX)); in ASYNC_WAIT_CTX_new() 20 void ASYNC_WAIT_CTX_free(ASYNC_WAIT_CTX *ctx) in ASYNC_WAIT_CTX_free() 43 int ASYNC_WAIT_CTX_set_wait_fd(ASYNC_WAIT_CTX *ctx, const void *key, in ASYNC_WAIT_CTX_set_wait_fd() 45 void (*cleanup)(ASYNC_WAIT_CTX *, const void *, in ASYNC_WAIT_CTX_set_wait_fd() argument 66 int ASYNC_WAIT_CTX_get_fd(ASYNC_WAIT_CTX *ctx, const void *key, in ASYNC_WAIT_CTX_get_fd() 88 int ASYNC_WAIT_CTX_get_all_fds(ASYNC_WAIT_CTX *ctx, OSSL_ASYNC_FD *fd, in ASYNC_WAIT_CTX_get_all_fds() 111 int ASYNC_WAIT_CTX_get_changed_fds(ASYNC_WAIT_CTX *ctx, OSSL_ASYNC_FD *addfd, in ASYNC_WAIT_CTX_get_changed_fds() 140 int ASYNC_WAIT_CTX_clear_fd(ASYNC_WAIT_CTX *ctx, const void *key) in ASYNC_WAIT_CTX_clear_fd() 185 int ASYNC_WAIT_CTX_set_callback(ASYNC_WAIT_CTX *ctx, in ASYNC_WAIT_CTX_set_callback() [all …]
|
D | async_local.h | 45 ASYNC_WAIT_CTX *waitctx; 53 void (*cleanup)(ASYNC_WAIT_CTX *, const void *, OSSL_ASYNC_FD, void *); 80 void async_wait_ctx_reset_counts(ASYNC_WAIT_CTX *ctx);
|
D | async.c | 177 int ASYNC_start_job(ASYNC_JOB **job, ASYNC_WAIT_CTX *wctx, int *ret, in ASYNC_start_job() 449 ASYNC_WAIT_CTX *ASYNC_get_wait_ctx(ASYNC_JOB *job) in ASYNC_get_wait_ctx()
|
/third_party/openssl/doc/man3/ |
D | ASYNC_WAIT_CTX_new.pod | 23 ASYNC_WAIT_CTX *ASYNC_WAIT_CTX_new(void); 24 void ASYNC_WAIT_CTX_free(ASYNC_WAIT_CTX *ctx); 25 int ASYNC_WAIT_CTX_set_wait_fd(ASYNC_WAIT_CTX *ctx, const void *key, 28 void (*cleanup)(ASYNC_WAIT_CTX *, const void *, 30 int ASYNC_WAIT_CTX_get_fd(ASYNC_WAIT_CTX *ctx, const void *key, 32 int ASYNC_WAIT_CTX_get_all_fds(ASYNC_WAIT_CTX *ctx, OSSL_ASYNC_FD *fd, 34 int ASYNC_WAIT_CTX_get_changed_fds(ASYNC_WAIT_CTX *ctx, OSSL_ASYNC_FD *addfd, 37 int ASYNC_WAIT_CTX_clear_fd(ASYNC_WAIT_CTX *ctx, const void *key); 38 int ASYNC_WAIT_CTX_set_callback(ASYNC_WAIT_CTX *ctx, 41 int ASYNC_WAIT_CTX_get_callback(ASYNC_WAIT_CTX *ctx, [all …]
|
D | ASYNC_start_job.pod | 17 int ASYNC_start_job(ASYNC_JOB **job, ASYNC_WAIT_CTX *ctx, int *ret, 22 ASYNC_WAIT_CTX *ASYNC_get_wait_ctx(ASYNC_JOB *job); 58 Initially I<*job> should be NULL. I<ctx> should point to an B<ASYNC_WAIT_CTX> 109 ASYNC_get_wait_ctx() can be used to get a pointer to the B<ASYNC_WAIT_CTX> 110 for the I<job>. B<ASYNC_WAIT_CTX>s contain two different ways to notify 114 The "wait" file descriptor associated with B<ASYNC_WAIT_CTX> is used for 121 B<ASYNC_WAIT_CTX>s also have a "callback" mechanism to notify applications. The 163 ASYNC_get_wait_ctx() returns a pointer to the B<ASYNC_WAIT_CTX> for the job. 191 void cleanup(ASYNC_WAIT_CTX *ctx, const void *key, OSSL_ASYNC_FD r, void *vw) 254 ASYNC_WAIT_CTX *ctx = NULL; [all …]
|
D | SSL_set_async_callback.pod | 68 this point then the status within the B<ASYNC_WAIT_CTX> would be set and the
|
/third_party/openssl/test/ |
D | asynctest.c | 83 ASYNC_WAIT_CTX *waitctx; in waitfd() 127 ASYNC_WAIT_CTX *waitctx = NULL; in test_ASYNC_init_thread() 167 ASYNC_WAIT_CTX *waitctx = NULL; in test_ASYNC_callback_status() 200 ASYNC_WAIT_CTX *waitctx = NULL; in test_ASYNC_start_job() 228 ASYNC_WAIT_CTX *waitctx = NULL; in test_ASYNC_get_current_job() 255 ASYNC_WAIT_CTX *waitctx = NULL; in test_ASYNC_WAIT_CTX_get_all_fds() 322 ASYNC_WAIT_CTX *waitctx = NULL; in test_ASYNC_block_pause() 346 ASYNC_WAIT_CTX *waitctx = NULL; in test_ASYNC_start_job_ex()
|
/third_party/openssl/engines/ |
D | e_dasync.c | 459 static void wait_cleanup(ASYNC_WAIT_CTX *ctx, const void *key, in wait_cleanup() 477 ASYNC_WAIT_CTX *waitctx; in dummy_pause_job()
|
D | e_afalg.c | 179 static void afalg_waitfd_cleanup(ASYNC_WAIT_CTX *ctx, const void *key, in afalg_waitfd_cleanup() 188 ASYNC_WAIT_CTX *waitctx; in afalg_setup_async_event_notification()
|
/third_party/openssl/ssl/ |
D | ssl_lib.c | 1690 ASYNC_WAIT_CTX *ctx = s->waitctx; in SSL_get_all_async_fds() 1700 ASYNC_WAIT_CTX *ctx = s->waitctx; in SSL_get_changed_async_fds() 1734 ASYNC_WAIT_CTX *ctx = s->waitctx; in SSL_get_async_status()
|
D | ssl_local.h | 1753 ASYNC_WAIT_CTX *waitctx;
|
/third_party/openssl/apps/ |
D | speed.c | 461 ASYNC_WAIT_CTX *wait_ctx;
|