Home
last modified time | relevance | path

Searched refs:ASYNC_WAIT_CTX (Results 1 – 14 of 14) sorted by relevance

/third_party/openssl/include/openssl/
Dasync.h39 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/
Dasync.h33 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/
Dasync_wait.c15 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 …]
Dasync_local.h45 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);
Dasync.c177 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/
DASYNC_WAIT_CTX_new.pod23 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 …]
DASYNC_start_job.pod17 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 …]
DSSL_set_async_callback.pod68 this point then the status within the B<ASYNC_WAIT_CTX> would be set and the
/third_party/openssl/test/
Dasynctest.c83 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/
De_dasync.c459 static void wait_cleanup(ASYNC_WAIT_CTX *ctx, const void *key, in wait_cleanup()
477 ASYNC_WAIT_CTX *waitctx; in dummy_pause_job()
De_afalg.c179 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/
Dssl_lib.c1690 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()
Dssl_local.h1753 ASYNC_WAIT_CTX *waitctx;
/third_party/openssl/apps/
Dspeed.c461 ASYNC_WAIT_CTX *wait_ctx;