Lines Matching refs:ui_method
15 static UI_METHOD *ui_method = NULL; variable
129 ui_method = UI_create_method("OpenSSL application user interface"); in setup_ui_method()
130 return ui_method != NULL in setup_ui_method()
131 && 0 == UI_method_set_opener(ui_method, ui_open) in setup_ui_method()
132 && 0 == UI_method_set_reader(ui_method, ui_read) in setup_ui_method()
133 && 0 == UI_method_set_writer(ui_method, ui_write) in setup_ui_method()
134 && 0 == UI_method_set_closer(ui_method, ui_close) in setup_ui_method()
135 && 0 == UI_method_set_prompt_constructor(ui_method, in setup_ui_method()
141 if (ui_method != NULL) { in destroy_ui_method()
142 UI_destroy_method(ui_method); in destroy_ui_method()
143 ui_method = NULL; in destroy_ui_method()
149 return ui_method; in get_ui_method()
174 if ((ui = UI_new_method(ui_method)) == NULL) in password_callback()