Searched refs:UI_STRING (Results 1 – 6 of 6) sorted by relevance
| /mirbsd/src/lib/libssl/src/crypto/ui/ |
| D | ui.h | 296 DECLARE_STACK_OF(UI_STRING) 297 typedef struct ui_string_st UI_STRING; typedef 315 int UI_method_set_writer(UI_METHOD *method, int (*writer)(UI *ui, UI_STRING *uis)); 317 int UI_method_set_reader(UI_METHOD *method, int (*reader)(UI *ui, UI_STRING *uis)); 320 int (*UI_method_get_writer(UI_METHOD *method))(UI*,UI_STRING*); 322 int (*UI_method_get_reader(UI_METHOD *method))(UI*,UI_STRING*); 329 enum UI_string_types UI_get_string_type(UI_STRING *uis); 331 int UI_get_input_flags(UI_STRING *uis); 333 const char *UI_get0_output_string(UI_STRING *uis); 335 const char *UI_get0_action_string(UI_STRING *uis); [all …]
|
| D | ui_lib.c | 97 static void free_string(UI_STRING *uis) in free_string() 138 static UI_STRING *general_allocate_prompt(UI *ui, const char *prompt, in general_allocate_prompt() 142 UI_STRING *ret = NULL; in general_allocate_prompt() 153 else if ((ret = (UI_STRING *)OPENSSL_malloc(sizeof(UI_STRING)))) in general_allocate_prompt() 169 UI_STRING *s = general_allocate_prompt(ui, prompt, prompt_freeable, in general_allocate_string() 196 UI_STRING *s; in general_allocate_boolean() 474 UI_STRING uis; in print_error() 649 int UI_method_set_writer(UI_METHOD *method, int (*writer)(UI *ui, UI_STRING *uis)) in UI_method_set_writer() 671 int UI_method_set_reader(UI_METHOD *method, int (*reader)(UI *ui, UI_STRING *uis)) in UI_method_set_reader() 701 int (*UI_method_get_writer(UI_METHOD *method))(UI*,UI_STRING*) in UI_method_get_writer() [all …]
|
| D | ui_locl.h | 77 int (*ui_write_string)(UI *ui, UI_STRING *uis); 83 int (*ui_read_string)(UI *ui, UI_STRING *uis); 137 STACK_OF(UI_STRING) *strings; /* We might want to prompt for more
|
| D | ui_openssl.c | 295 static int read_string_inner(UI *ui, UI_STRING *uis, int echo, int strip_nl); 297 static int read_string(UI *ui, UI_STRING *uis); 298 static int write_string(UI *ui, UI_STRING *uis); 324 static int write_string(UI *ui, UI_STRING *uis) in write_string() 339 static int read_string(UI *ui, UI_STRING *uis) in read_string() 394 static int read_string_inner(UI *ui, UI_STRING *uis, int echo, int strip_nl) in read_string_inner()
|
| /mirbsd/src/lib/libssl/src/crypto/stack/ |
| D | safestack.h | 1060 #define sk_UI_STRING_new(st) SKM_sk_new(UI_STRING, (st)) 1061 #define sk_UI_STRING_new_null() SKM_sk_new_null(UI_STRING) 1062 #define sk_UI_STRING_free(st) SKM_sk_free(UI_STRING, (st)) 1063 #define sk_UI_STRING_num(st) SKM_sk_num(UI_STRING, (st)) 1064 #define sk_UI_STRING_value(st, i) SKM_sk_value(UI_STRING, (st), (i)) 1065 #define sk_UI_STRING_set(st, i, val) SKM_sk_set(UI_STRING, (st), (i), (val)) 1066 #define sk_UI_STRING_zero(st) SKM_sk_zero(UI_STRING, (st)) 1067 #define sk_UI_STRING_push(st, val) SKM_sk_push(UI_STRING, (st), (val)) 1068 #define sk_UI_STRING_unshift(st, val) SKM_sk_unshift(UI_STRING, (st), (val)) 1069 #define sk_UI_STRING_find(st, val) SKM_sk_find(UI_STRING, (st), (val)) [all …]
|
| /mirbsd/src/lib/libssl/src/apps/ |
| D | apps.c | 437 static int ui_read(UI *ui, UI_STRING *uis) in ui_read() 461 static int ui_write(UI *ui, UI_STRING *uis) in ui_write()
|