OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ui_method
(Results
1 - 2
of
2
) sorted by null
/external/openssl/crypto/ui/
ui_lib.c
69
static const
UI_METHOD
*default_UI_meth=NULL;
76
UI *UI_new_method(const
UI_METHOD
*method)
593
void UI_set_default_method(const
UI_METHOD
*meth)
598
const
UI_METHOD
*UI_get_default_method(void)
607
const
UI_METHOD
*UI_get_method(UI *ui)
612
const
UI_METHOD
*UI_set_method(UI *ui, const
UI_METHOD
*meth)
619
UI_METHOD
*UI_create_method(char *name)
621
UI_METHOD
*
ui_method
= (UI_METHOD *)OPENSSL_malloc(sizeof(UI_METHOD))
local
[
all
...]
/external/openssl/apps/
apps.c
161
static
UI_METHOD
*
ui_method
= NULL;
variable
534
ui_method
= UI_create_method("OpenSSL application user interface");
535
UI_method_set_opener(
ui_method
, ui_open);
536
UI_method_set_reader(
ui_method
, ui_read);
537
UI_method_set_writer(
ui_method
, ui_write);
538
UI_method_set_closer(
ui_method
, ui_close);
543
if(
ui_method
)
545
UI_destroy_method(
ui_method
);
546
ui_method
= NULL
[
all
...]
Completed in 2839 milliseconds