Symbol: UI_METHOD
crypto/openssl/apps/include/apps_ui.h
23
int set_base_ui_method(const UI_METHOD *ui_method);
crypto/openssl/apps/include/apps_ui.h
24
const UI_METHOD *get_ui_method(void);
crypto/openssl/apps/lib/apps_ui.c
109
int set_base_ui_method(const UI_METHOD *ui_meth)
crypto/openssl/apps/lib/apps_ui.c
140
const UI_METHOD *get_ui_method(void)
crypto/openssl/apps/lib/apps_ui.c
15
static UI_METHOD *ui_method = NULL;
crypto/openssl/apps/lib/apps_ui.c
16
static const UI_METHOD *ui_base_method = NULL;
crypto/openssl/apps/lib/engine_loader.c
116
const UI_METHOD *ui_method, void *ui_data)
crypto/openssl/apps/lib/engine_loader.c
126
(UI_METHOD *)ui_method, ui_data);
crypto/openssl/apps/lib/engine_loader.c
130
(UI_METHOD *)ui_method, ui_data);
crypto/openssl/apps/lib/engine_loader.c
67
const UI_METHOD *ui_method,
crypto/openssl/apps/storeutl.c
19
static int process(const char *uri, const UI_METHOD *uimeth, PW_CB_DATA *uidata,
crypto/openssl/apps/storeutl.c
362
static int process(const char *uri, const UI_METHOD *uimeth, PW_CB_DATA *uidata,
crypto/openssl/crypto/encode_decode/decoder_pkey.c
34
const UI_METHOD *ui_method,
crypto/openssl/crypto/encode_decode/encoder_pkey.c
48
const UI_METHOD *ui_method,
crypto/openssl/crypto/engine/eng_openssl.c
420
UI_METHOD *ui_method,
crypto/openssl/crypto/engine/eng_openssl.c
77
UI_METHOD *ui_method,
crypto/openssl/crypto/engine/eng_pkey.c
117
UI_METHOD *ui_method, void *callback_data)
crypto/openssl/crypto/engine/eng_pkey.c
57
UI_METHOD *ui_method, void *callback_data)
crypto/openssl/crypto/engine/eng_pkey.c
86
UI_METHOD *ui_method, void *callback_data)
crypto/openssl/crypto/passphrase.c
116
const UI_METHOD *ui_method, void *ui_data)
crypto/openssl/crypto/passphrase.c
211
const UI_METHOD *ui_method = NULL;
crypto/openssl/crypto/passphrase.c
212
UI_METHOD *allocated_ui_method = NULL;
crypto/openssl/crypto/passphrase.c
80
const UI_METHOD *ui_method, void *ui_data)
crypto/openssl/crypto/store/store_lib.c
1030
const UI_METHOD *ui_method, void *ui_data,
crypto/openssl/crypto/store/store_lib.c
241
const UI_METHOD *ui_method, void *ui_data,
crypto/openssl/crypto/store/store_lib.c
493
const UI_METHOD *ui_method, void *ui_data,
crypto/openssl/crypto/store/store_lib.c
65
const UI_METHOD *ui_method, void *ui_data,
crypto/openssl/crypto/ui/ui_lib.c
23
UI *UI_new_method(const UI_METHOD *method)
crypto/openssl/crypto/ui/ui_lib.c
591
const UI_METHOD *UI_get_method(UI *ui)
crypto/openssl/crypto/ui/ui_lib.c
596
const UI_METHOD *UI_set_method(UI *ui, const UI_METHOD *meth)
crypto/openssl/crypto/ui/ui_lib.c
602
UI_METHOD *UI_create_method(const char *name)
crypto/openssl/crypto/ui/ui_lib.c
604
UI_METHOD *ui_method = NULL;
crypto/openssl/crypto/ui/ui_lib.c
631
void UI_destroy_method(UI_METHOD *ui_method)
crypto/openssl/crypto/ui/ui_lib.c
642
int UI_method_set_opener(UI_METHOD *method, int (*opener)(UI *ui))
crypto/openssl/crypto/ui/ui_lib.c
651
int UI_method_set_writer(UI_METHOD *method,
crypto/openssl/crypto/ui/ui_lib.c
661
int UI_method_set_flusher(UI_METHOD *method, int (*flusher)(UI *ui))
crypto/openssl/crypto/ui/ui_lib.c
670
int UI_method_set_reader(UI_METHOD *method,
crypto/openssl/crypto/ui/ui_lib.c
680
int UI_method_set_closer(UI_METHOD *method, int (*closer)(UI *ui))
crypto/openssl/crypto/ui/ui_lib.c
689
int UI_method_set_data_duplicator(UI_METHOD *method,
crypto/openssl/crypto/ui/ui_lib.c
701
int UI_method_set_prompt_constructor(UI_METHOD *method,
crypto/openssl/crypto/ui/ui_lib.c
713
int UI_method_set_ex_data(UI_METHOD *method, int idx, void *data)
crypto/openssl/crypto/ui/ui_lib.c
718
int (*UI_method_get_opener(const UI_METHOD *method))(UI *)
crypto/openssl/crypto/ui/ui_lib.c
725
int (*UI_method_get_writer(const UI_METHOD *method))(UI *, UI_STRING *)
crypto/openssl/crypto/ui/ui_lib.c
732
int (*UI_method_get_flusher(const UI_METHOD *method))(UI *)
crypto/openssl/crypto/ui/ui_lib.c
739
int (*UI_method_get_reader(const UI_METHOD *method))(UI *, UI_STRING *)
crypto/openssl/crypto/ui/ui_lib.c
746
int (*UI_method_get_closer(const UI_METHOD *method))(UI *)
crypto/openssl/crypto/ui/ui_lib.c
753
char *(*UI_method_get_prompt_constructor(const UI_METHOD *method))(UI *, const char *, const char *)
crypto/openssl/crypto/ui/ui_lib.c
760
void *(*UI_method_get_data_duplicator(const UI_METHOD *method))(UI *, void *)
crypto/openssl/crypto/ui/ui_lib.c
767
void (*UI_method_get_data_destructor(const UI_METHOD *method))(UI *, void *)
crypto/openssl/crypto/ui/ui_lib.c
774
const void *UI_method_get_ex_data(const UI_METHOD *method, int idx)
crypto/openssl/crypto/ui/ui_local.h
95
const UI_METHOD *meth;
crypto/openssl/crypto/ui/ui_null.c
12
static const UI_METHOD ui_null = {
crypto/openssl/crypto/ui/ui_null.c
23
const UI_METHOD *UI_null(void)
crypto/openssl/crypto/ui/ui_openssl.c
698
static UI_METHOD ui_openssl = {
crypto/openssl/crypto/ui/ui_openssl.c
709
UI_METHOD *UI_OpenSSL(void)
crypto/openssl/crypto/ui/ui_openssl.c
714
static const UI_METHOD *default_UI_meth = &ui_openssl;
crypto/openssl/crypto/ui/ui_openssl.c
718
static const UI_METHOD *default_UI_meth = NULL;
crypto/openssl/crypto/ui/ui_openssl.c
722
void UI_set_default_method(const UI_METHOD *meth)
crypto/openssl/crypto/ui/ui_openssl.c
727
const UI_METHOD *UI_get_default_method(void)
crypto/openssl/crypto/ui/ui_util.c
143
UI_METHOD *UI_UTIL_wrap_read_pem_callback(pem_password_cb *cb, int rwflag)
crypto/openssl/crypto/ui/ui_util.c
146
UI_METHOD *ui_method = NULL;
crypto/openssl/engines/e_capi.c
127
UI_METHOD *ui_method, void *callback_data);
crypto/openssl/engines/e_capi.c
146
UI_METHOD *ui_method,
crypto/openssl/engines/e_capi.c
1701
UI_METHOD *ui_method,
crypto/openssl/engines/e_capi.c
810
UI_METHOD *ui_method, void *callback_data)
crypto/openssl/engines/e_loader_attic.c
101
const UI_METHOD *ui_method;
crypto/openssl/engines/e_loader_attic.c
1063
const UI_METHOD *ui_method, void *ui_data)
crypto/openssl/engines/e_loader_attic.c
1070
const UI_METHOD *ui_method, void *ui_data)
crypto/openssl/engines/e_loader_attic.c
109
const UI_METHOD *ui_method, void *ui_data)
crypto/openssl/engines/e_loader_attic.c
1162
const UI_METHOD *ui_method,
crypto/openssl/engines/e_loader_attic.c
1259
const UI_METHOD *ui_method,
crypto/openssl/engines/e_loader_attic.c
1290
const UI_METHOD *ui_method, void *ui_data,
crypto/openssl/engines/e_loader_attic.c
1360
static OSSL_STORE_INFO *file_try_read_PVK(BIO *bp, const UI_METHOD *ui_method,
crypto/openssl/engines/e_loader_attic.c
1498
const UI_METHOD *ui_method,
crypto/openssl/engines/e_loader_attic.c
263
const UI_METHOD *ui_method,
crypto/openssl/engines/e_loader_attic.c
300
const UI_METHOD *ui_method,
crypto/openssl/engines/e_loader_attic.c
436
const UI_METHOD *ui_method,
crypto/openssl/engines/e_loader_attic.c
514
const UI_METHOD *ui_method,
crypto/openssl/engines/e_loader_attic.c
56
static char *file_get_pass(const UI_METHOD *ui_method, char *pass,
crypto/openssl/engines/e_loader_attic.c
642
const UI_METHOD *ui_method,
crypto/openssl/engines/e_loader_attic.c
678
const UI_METHOD *ui_method,
crypto/openssl/engines/e_loader_attic.c
755
const UI_METHOD *ui_method,
crypto/openssl/engines/e_loader_attic.c
812
const UI_METHOD *ui_method,
crypto/openssl/engines/e_loader_attic.c
949
const UI_METHOD *ui_method, void *ui_data)
crypto/openssl/engines/e_ossltest.c
380
UI_METHOD *ui_method, void *ui_data)
crypto/openssl/engines/e_ossltest.c
402
UI_METHOD *ui_method, void *ui_data)
crypto/openssl/engines/e_ossltest.c
408
UI_METHOD *ui_method, void *ui_data)
crypto/openssl/include/internal/passphrase.h
65
const UI_METHOD *ui_method;
crypto/openssl/include/internal/passphrase.h
98
const UI_METHOD *ui_method, void *ui_data);
crypto/openssl/include/openssl/decoder.h
64
const UI_METHOD *ui_method,
crypto/openssl/include/openssl/encoder.h
64
const UI_METHOD *ui_method,
crypto/openssl/include/openssl/engine.h
273
UI_METHOD *ui_method,
crypto/openssl/include/openssl/engine.h
279
UI_METHOD *ui_method,
crypto/openssl/include/openssl/engine.h
641
UI_METHOD *ui_method, void *callback_data);
crypto/openssl/include/openssl/engine.h
644
UI_METHOD *ui_method, void *callback_data);
crypto/openssl/include/openssl/engine.h
649
UI_METHOD *ui_method, void *callback_data);
crypto/openssl/include/openssl/store.h
106
const UI_METHOD *ui_method, void *ui_data,
crypto/openssl/include/openssl/store.h
142
const UI_METHOD *ui_method, void *ui_data,
crypto/openssl/include/openssl/store.h
296
const UI_METHOD *ui_method, void *ui_data);
crypto/openssl/include/openssl/store.h
299
const UI_METHOD *ui_method, void *ui_data);
crypto/openssl/include/openssl/store.h
303
const UI_METHOD *ui_method, void *ui_data);
crypto/openssl/include/openssl/store.h
307
typedef OSSL_STORE_INFO *(*OSSL_STORE_load_fn)(OSSL_STORE_LOADER_CTX *ctx, const UI_METHOD *ui_method, void *ui_data);
crypto/openssl/include/openssl/store.h
56
OSSL_STORE_open(const char *uri, const UI_METHOD *ui_method, void *ui_data,
crypto/openssl/include/openssl/store.h
61
const UI_METHOD *ui_method, void *ui_data,
crypto/openssl/include/openssl/ui.h
228
void UI_set_default_method(const UI_METHOD *meth);
crypto/openssl/include/openssl/ui.h
229
const UI_METHOD *UI_get_default_method(void);
crypto/openssl/include/openssl/ui.h
230
const UI_METHOD *UI_get_method(UI *ui);
crypto/openssl/include/openssl/ui.h
231
const UI_METHOD *UI_set_method(UI *ui, const UI_METHOD *meth);
crypto/openssl/include/openssl/ui.h
236
UI_METHOD *UI_OpenSSL(void);
crypto/openssl/include/openssl/ui.h
244
const UI_METHOD *UI_null(void);
crypto/openssl/include/openssl/ui.h
339
UI_METHOD *UI_create_method(const char *name);
crypto/openssl/include/openssl/ui.h
340
void UI_destroy_method(UI_METHOD *ui_method);
crypto/openssl/include/openssl/ui.h
341
int UI_method_set_opener(UI_METHOD *method, int (*opener)(UI *ui));
crypto/openssl/include/openssl/ui.h
342
int UI_method_set_writer(UI_METHOD *method,
crypto/openssl/include/openssl/ui.h
344
int UI_method_set_flusher(UI_METHOD *method, int (*flusher)(UI *ui));
crypto/openssl/include/openssl/ui.h
345
int UI_method_set_reader(UI_METHOD *method,
crypto/openssl/include/openssl/ui.h
347
int UI_method_set_closer(UI_METHOD *method, int (*closer)(UI *ui));
crypto/openssl/include/openssl/ui.h
348
int UI_method_set_data_duplicator(UI_METHOD *method,
crypto/openssl/include/openssl/ui.h
351
int UI_method_set_prompt_constructor(UI_METHOD *method,
crypto/openssl/include/openssl/ui.h
357
int UI_method_set_ex_data(UI_METHOD *method, int idx, void *data);
crypto/openssl/include/openssl/ui.h
358
int (*UI_method_get_opener(const UI_METHOD *method))(UI *);
crypto/openssl/include/openssl/ui.h
359
int (*UI_method_get_writer(const UI_METHOD *method))(UI *, UI_STRING *);
crypto/openssl/include/openssl/ui.h
360
int (*UI_method_get_flusher(const UI_METHOD *method))(UI *);
crypto/openssl/include/openssl/ui.h
361
int (*UI_method_get_reader(const UI_METHOD *method))(UI *, UI_STRING *);
crypto/openssl/include/openssl/ui.h
362
int (*UI_method_get_closer(const UI_METHOD *method))(UI *);
crypto/openssl/include/openssl/ui.h
363
char *(*UI_method_get_prompt_constructor(const UI_METHOD *method))(UI *, const char *, const char *);
crypto/openssl/include/openssl/ui.h
364
void *(*UI_method_get_data_duplicator(const UI_METHOD *method))(UI *, void *);
crypto/openssl/include/openssl/ui.h
365
void (*UI_method_get_data_destructor(const UI_METHOD *method))(UI *, void *);
crypto/openssl/include/openssl/ui.h
366
const void *UI_method_get_ex_data(const UI_METHOD *method, int idx);
crypto/openssl/include/openssl/ui.h
404
UI_METHOD *UI_UTIL_wrap_read_pem_callback(pem_password_cb *cb, int rwflag);
crypto/openssl/include/openssl/ui.h
56
UI *UI_new_method(const UI_METHOD *method);
crypto/openssl/test/evp_extra_test2.c
2075
const UI_METHOD *undo_ui_method = NULL;
crypto/openssl/test/evp_extra_test2.c
2076
const UI_METHOD *ui_method = NULL;
crypto/openssl/test/ossl_store_test.c
103
UI_METHOD *ui_method = NULL;
crypto/openssl/test/ossl_store_test.c
44
UI_METHOD *ui_method = NULL;
crypto/openssl/test/provider_pkey_test.c
455
UI_METHOD *ui_method = NULL;
crypto/openssl/test/uitest.c
32
UI_METHOD *ui_method = NULL;