Searched refs:handler (Results 1 – 18 of 18) sorted by relevance
/openssl-master/doc/internal/man3/ |
A D | ossl_init_thread_deregister.pod | 29 Thread aware code registers a "stop handler" for each new thread that it uses. 31 thread local variable and then register a stop handler. When the thread is 32 stopping the stop handler is called (while on that thread) and the code can 35 A new stop handler is registered using the function ossl_init_thread_start(). 40 back as an argument to the stop handler when it is later invoked. Finally the 41 I<handfn> is a function pointer to the stop handler itself.
|
/openssl-master/doc/man3/ |
A D | SSL_CTX_has_client_custom_ext.pod | 5 SSL_CTX_has_client_custom_ext - check whether a handler exists for a particular 16 SSL_CTX_has_client_custom_ext() checks whether a handler has been set for a 21 Returns 1 if a handler has been set, 0 otherwise.
|
A D | CONF_modules_free.pod | 28 CONF_modules_finish() calls each configuration modules B<finish> handler
|
A D | OPENSSL_fork_prepare.pod | 40 handler, when the B<OPENSSL_INIT_ATFORK> flag is used. For other
|
A D | SSL_CTX_set_ct_validation_callback.pod | 110 be set if a custom client extension handler has been registered to handle SCT 118 They return 0 if an error occurs, e.g. a custom client extension handler has
|
A D | RSA_check_key.pod | 70 The best fix will probably be to introduce a "check_key()" handler to the
|
A D | ENGINE_add.pod | 500 ENGINE, i.e. the ENGINE's ctrl() handler is not used for the control command. 522 it can supply a ctrl() handler, it can specify ENGINE_FLAGS_MANUAL_CMD_CTRL in 526 handler (and thus, it must have supplied one), so it is up to the ENGINE to 530 if no ctrl() handler supplied; 533 if a ctrl() handler was supplied but no array of control commands; 536 if a ctrl() handler and array of control commands was supplied;
|
A D | OPENSSL_init_crypto.pod | 17 int OPENSSL_atexit(void (*handler)(void)); 179 "atexit" handler. Using this option suppresses that behaviour. This means that
|
A D | SSL_extension_supported.pod | 109 extension handler was added. When using the new style callbacks the B<context>
|
/openssl-master/util/perl/OpenSSL/ |
A D | ParseC.pm | 1138 foreach my $handler (@endhandlers) { 1139 if ($handler->{massager}) { 1140 $handler->{massager}->(\%opts); 1158 foreach my $handler (@handlers) { 1159 if ($handler->{regexp} 1160 && $line =~ m|^$handler->{regexp}$|) { 1161 if ($handler->{massager}) { 1164 … print STDERR "DEBUG[",$opts{debug_type},"]: (matches /\^",$handler->{regexp},"\$/)\n"; 1169 $handler->{massager}->($saved_line, \%opts);
|
/openssl-master/crypto/ |
A D | init.c | 41 void (*handler)(void); member 363 currhandler->handler(); in OPENSSL_cleanup() 651 int OPENSSL_atexit(void (*handler)(void)) in OPENSSL_atexit() 663 handlersym.func = handler; in OPENSSL_atexit() 708 newhand->handler = handler; in OPENSSL_atexit()
|
/openssl-master/doc/man7/ |
A D | ossl_store-file.pod | 28 In case a file is formatted as PEM, each called file handler receives 38 Each file handler is expected to handle PEM and non-PEM content as
|
/openssl-master/engines/ |
A D | e_loader_attic.c | 1201 const FILE_HANDLER *handler = file_handlers[i]; in file_load_try_decode() local 1209 handler->try_decode(pem_name, pem_header, data, len, in file_load_try_decode() 1223 matching_handlers[*matchcount] = handler; in file_load_try_decode() 1226 handler->destroy_ctx(&handler_ctx); in file_load_try_decode() 1233 if (handler->destroy_ctx != NULL) in file_load_try_decode() 1234 handler->destroy_ctx(&handler_ctx); in file_load_try_decode()
|
/openssl-master/test/ |
A D | shlibloadtest.c | 24 typedef int (*OPENSSL_atexit_t)(void (*handler)(void));
|
/openssl-master/ |
A D | INSTALL.md | 788 via an `atexit()` handler. The handler is registered by libcrypto and cleans 789 up both libraries. On some platforms the `atexit()` handler will run on unload of 793 already been unloaded at the point that the atexit handler is invoked, e.g. on a 796 running of the `atexit()` handler at run time by using the
|
A D | CHANGES.md | 7298 Add a PSS handler to support verification of PSS signatures: checked 12296 * Add a "destroy" handler to ENGINEs that allows structural cleanup to 12299 functions to "get" and "set" this destroy handler in an ENGINE. 12730 - Changed prototypes for ENGINE handler functions (init(), finish(), 14825 the method-specific "init()" handler. Also clean up ex_data after 14826 calling the method-specific "finish()" handler. Previously, this was
|
/openssl-master/include/openssl/ |
A D | crypto.h.in | 461 int OPENSSL_atexit(void (*handler)(void));
|
/openssl-master/crypto/err/ |
A D | openssl.txt | 1299 custom ext handler already installed
|
Completed in 50 milliseconds