Home | History | Annotate | Download | only in apps

Lines Matching defs:ui_method

64 static UI_METHOD *ui_method = NULL;
65 static const UI_METHOD *ui_fallback_method = NULL;
269 ui_method = UI_create_method("OpenSSL application user interface");
270 UI_method_set_opener(ui_method, ui_open);
271 UI_method_set_reader(ui_method, ui_read);
272 UI_method_set_writer(ui_method, ui_write);
273 UI_method_set_closer(ui_method, ui_close);
279 if (ui_method) {
280 UI_destroy_method(ui_method);
281 ui_method = NULL;
285 const UI_METHOD *get_ui_method(void)
287 return ui_method;
296 ui = UI_new_method(ui_method);
741 pkey = ENGINE_load_private_key(e, file, ui_method, &cb_data);
812 pkey = ENGINE_load_public_key(e, file, ui_method, &cb_data);
1315 ENGINE_ctrl_cmd(e, "SET_USER_INTERFACE", 0, ui_method, 0, 1);