HomeSort by relevance Sort by last modified time
    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
532 ui_method = UI_create_method("OpenSSL application user interface");
533 UI_method_set_opener(ui_method, ui_open);
534 UI_method_set_reader(ui_method, ui_read);
535 UI_method_set_writer(ui_method, ui_write);
536 UI_method_set_closer(ui_method, ui_close);
541 if(ui_method)
543 UI_destroy_method(ui_method);
544 ui_method = NULL
    [all...]

Completed in 45 milliseconds