OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tls_context
(Results
1 - 4
of
4
) sorted by null
/external/deqp/framework/opengl/
gluES3PlusWrapperContext.cpp
157
static de::ThreadLocal
tls_context
;
member in namespace:glu::es3plus
161
tls_context
.set(context);
166
return (Context*)
tls_context
.get();
/external/libmicrohttpd/src/microhttpd/
internal.h
1193
SSL_CTX*
tls_context
;
member in struct:MHD_Daemon
[
all
...]
daemon.c
594
daemon->
tls_context
= SSL_CTX_new (TLSv1_2_server_method());
595
if (NULL == daemon->
tls_context
)
605
ret = SSL_CTX_add_client_CA (daemon->
tls_context
, x509);
625
ret = SSL_CTX_set_tmp_dh (daemon->
tls_context
, dh);
648
ret = SSL_CTX_use_PrivateKey (daemon->
tls_context
, key);
664
ret = SSL_CTX_use_certificate (daemon->
tls_context
, x509);
674
if (1 != SSL_CTX_check_private_key (daemon->
tls_context
))
693
ret = SSL_CTX_set_cipher_list (daemon->
tls_context
,
706
ret = SSL_CTX_set_cipher_list (daemon->
tls_context
,
723
SSL_CTX_free (daemon->
tls_context
);
[
all
...]
/external/wpa_supplicant_8/src/crypto/
tls_openssl.c
173
struct
tls_context
{
struct
181
static struct
tls_context
*tls_global = NULL;
190
struct
tls_context
*context;
227
static struct
tls_context
* tls_context_new(const struct tls_config *conf)
229
struct
tls_context
*context = os_zalloc(sizeof(*context));
683
struct
tls_context
*context = conn->context;
868
struct
tls_context
*context;
1018
struct
tls_context
*context = SSL_CTX_get_app_data(ssl);
1315
struct
tls_context
*context = SSL_CTX_get_app_data(ssl);
[
all
...]
Completed in 194 milliseconds