Lines Matching refs:ui_method
64 static UI_METHOD *ui_method = NULL; variable
269 ui_method = UI_create_method("OpenSSL application user interface"); in setup_ui_method()
270 UI_method_set_opener(ui_method, ui_open); in setup_ui_method()
271 UI_method_set_reader(ui_method, ui_read); in setup_ui_method()
272 UI_method_set_writer(ui_method, ui_write); in setup_ui_method()
273 UI_method_set_closer(ui_method, ui_close); in setup_ui_method()
279 if (ui_method) { in destroy_ui_method()
280 UI_destroy_method(ui_method); in destroy_ui_method()
281 ui_method = NULL; in destroy_ui_method()
287 return ui_method; in get_ui_method()
296 ui = UI_new_method(ui_method); in password_callback()
739 pkey = ENGINE_load_private_key(e, file, ui_method, &cb_data); in load_key()
810 pkey = ENGINE_load_public_key(e, file, ui_method, &cb_data); in load_pubkey()
1313 ENGINE_ctrl_cmd(e, "SET_USER_INTERFACE", 0, ui_method, 0, 1); in setup_engine()