Home
last modified time | relevance | path

Searched refs:ASYNC_start_job (Results 1 – 11 of 11) sorted by relevance

/third_party/openssl/test/
Dasynctest.c98 || ASYNC_start_job(&job1, waitctx, &funcret1, only_pause, NULL, 0) in test_ASYNC_init_thread()
100 || ASYNC_start_job(&job2, waitctx, &funcret2, only_pause, NULL, 0) in test_ASYNC_init_thread()
102 || ASYNC_start_job(&job3, waitctx, &funcret3, only_pause, NULL, 0) in test_ASYNC_init_thread()
104 || ASYNC_start_job(&job1, waitctx, &funcret1, only_pause, NULL, 0) in test_ASYNC_init_thread()
106 || ASYNC_start_job(&job3, waitctx, &funcret3, only_pause, NULL, 0) in test_ASYNC_init_thread()
108 || ASYNC_start_job(&job2, waitctx, &funcret2, only_pause, NULL, 0) in test_ASYNC_init_thread()
110 || ASYNC_start_job(&job3, waitctx, &funcret3, only_pause, NULL, 0) in test_ASYNC_init_thread()
136 || ASYNC_start_job(&job, waitctx, &funcret, add_two, NULL, 0) in test_ASYNC_start_job()
139 || ASYNC_start_job(&job, waitctx, &funcret, add_two, NULL, 0) in test_ASYNC_start_job()
164 || ASYNC_start_job(&job, waitctx, &funcret, save_current, NULL, 0) in test_ASYNC_get_current_job()
[all …]
/third_party/openssl/doc/man3/
DASYNC_start_job.pod6 ASYNC_init_thread, ASYNC_cleanup_thread, ASYNC_start_job, ASYNC_pause_job,
17 int ASYNC_start_job(ASYNC_JOB **job, ASYNC_WAIT_CTX *ctx, int *ret,
57 An asynchronous job is started by calling the ASYNC_start_job() function.
64 ASYNC_start_job will return one of the following values:
83 a job call ASYNC_start_job() again passing the job handle in B<*job>. The
85 When restarting a job ASYNC_start_job() B<must> be called from the same thread
101 indirectly by the function "func" passed as an argument to ASYNC_start_job())
103 application with ASYNC_PAUSE returned from the ASYNC_start_job() call. A
104 subsequent call to ASYNC_start_job passing in the relevant ASYNC_JOB in the
149 ASYNC_start_job returns one of ASYNC_ERR, ASYNC_NO_JOBS, ASYNC_PAUSE or
[all …]
DASYNC_WAIT_CTX_new.pod34 L<ASYNC_start_job(3)>. An ASYNC_WAIT_CTX object represents an asynchronous
39 function prior to calling ASYNC_start_job() (see L<ASYNC_start_job(3)>). When
61 have changed since the last call time ASYNC_start_job() returned an ASYNC_PAUSE
126 L<crypto(7)>, L<ASYNC_start_job(3)>
DOPENSSL_init_crypto.pod117 sub-library (see L<ASYNC_start_job(3)>). This is a default option.
/third_party/openssl/include/openssl/
Dasync.h63 int ASYNC_start_job(ASYNC_JOB **job, ASYNC_WAIT_CTX *ctx, int *ret,
/third_party/openssl/crypto/async/
Dasync.c167 int ASYNC_start_job(ASYNC_JOB **job, ASYNC_WAIT_CTX *wctx, int *ret, in ASYNC_start_job() function
/third_party/openssl/apps/
Dspeed.c1253 ret = ASYNC_start_job(&loopargs[i].inprogress_job, loopargs[i].wait_ctx, in run_benchmark()
1355 ret = ASYNC_start_job(&loopargs[i].inprogress_job, in run_benchmark()
/third_party/openssl/ssl/
Dssl_lib.c1689 switch (ASYNC_start_job(&s->job, s->waitctx, &ret, func, args, in ssl_start_async_job()
/third_party/openssl/crypto/err/
Dopenssl.txt128 ASYNC_F_ASYNC_START_JOB:105:ASYNC_start_job
/third_party/openssl/util/
Dlibcrypto.num1689 ASYNC_start_job 1677 1_1_0 EXIST::FUNCTION:
/third_party/openssl/
DCHANGES2167 asynchronous capable engine is used. See the ASYNC_start_job() man page for