OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:tlocal
(Results
1 - 2
of
2
) sorted by relevancy
/src/crypto/external/apache2/openssl/dist/crypto/
initthread.c
279
CRYPTO_THREAD_LOCAL *
tlocal
= OPENSSL_zalloc(sizeof(*
tlocal
));
local
281
if (
tlocal
== NULL)
284
if (!CRYPTO_THREAD_init_local(
tlocal
, NULL))
291
if (!CRYPTO_THREAD_set_local(
tlocal
, hands))
304
return
tlocal
;
307
CRYPTO_THREAD_cleanup_local(
tlocal
);
309
OPENSSL_free(
tlocal
);
313
void ossl_thread_event_ctx_free(void *
tlocal
)
315
CRYPTO_THREAD_cleanup_local(
tlocal
);
[
all
...]
/src/crypto/external/bsd/openssl/dist/crypto/
initthread.c
254
CRYPTO_THREAD_LOCAL *
tlocal
= OPENSSL_zalloc(sizeof(*
tlocal
));
local
256
if (
tlocal
== NULL)
259
if (!CRYPTO_THREAD_init_local(
tlocal
, NULL)) {
267
if (!CRYPTO_THREAD_set_local(
tlocal
, hands))
270
return
tlocal
;
273
OPENSSL_free(
tlocal
);
277
static void thread_event_ossl_ctx_free(void *
tlocal
)
279
OPENSSL_free(
tlocal
);
Completed in 23 milliseconds
Indexes created Wed Mar 25 00:23:37 UTC 2026