Searched refs:UI_STRING (Results 1 – 7 of 7) sorted by relevance
| /dragonfly/crypto/libressl/include/openssl/ |
| HD | ui.h | 308 typedef struct ui_string_st UI_STRING; typedef 309 DECLARE_STACK_OF(UI_STRING) 329 int (*writer)(UI *ui, UI_STRING *uis)); 332 int (*reader)(UI *ui, UI_STRING *uis)); 338 int (*UI_method_get_writer(const UI_METHOD *method))(UI *, UI_STRING *); 340 int (*UI_method_get_reader(const UI_METHOD *method))(UI *, UI_STRING *); 350 enum UI_string_types UI_get_string_type(UI_STRING *uis); 352 int UI_get_input_flags(UI_STRING *uis); 354 const char *UI_get0_output_string(UI_STRING *uis); 356 const char *UI_get0_action_string(UI_STRING *uis); [all …]
|
| HD | safestack.h | 1504 #define sk_UI_STRING_new(cmp) SKM_sk_new(UI_STRING, (cmp)) 1505 #define sk_UI_STRING_new_null() SKM_sk_new_null(UI_STRING) 1506 #define sk_UI_STRING_free(st) SKM_sk_free(UI_STRING, (st)) 1507 #define sk_UI_STRING_num(st) SKM_sk_num(UI_STRING, (st)) 1508 #define sk_UI_STRING_value(st, i) SKM_sk_value(UI_STRING, (st), (i)) 1509 #define sk_UI_STRING_set(st, i, val) SKM_sk_set(UI_STRING, (st), (i), (val)) 1510 #define sk_UI_STRING_zero(st) SKM_sk_zero(UI_STRING, (st)) 1511 #define sk_UI_STRING_push(st, val) SKM_sk_push(UI_STRING, (st), (val)) 1512 #define sk_UI_STRING_unshift(st, val) SKM_sk_unshift(UI_STRING, (st), (val)) 1513 #define sk_UI_STRING_find(st, val) SKM_sk_find(UI_STRING, (st), (val)) [all …]
|
| /dragonfly/crypto/libressl/crypto/ui/ |
| HD | ui_lib.c | 94 free_string(UI_STRING *uis) in free_string() 135 static UI_STRING * 139 UI_STRING *uis = NULL; in general_allocate_prompt() 151 if ((uis = calloc(1, sizeof(UI_STRING))) == NULL) { in general_allocate_prompt() 179 UI_STRING *s; in general_allocate_string() 206 UI_STRING *s = NULL; in general_allocate_boolean() 395 UI_STRING uis; in print_error() 574 UI_method_set_writer(UI_METHOD *method, int (*writer)(UI *ui, UI_STRING *uis)) in UI_method_set_writer() 594 UI_method_set_reader(UI_METHOD *method, int (*reader)(UI *ui, UI_STRING *uis)) in UI_method_set_reader() 634 (*UI_method_get_writer(const UI_METHOD *method))(UI *, UI_STRING *) in UI_method_get_writer() [all …]
|
| HD | ui_openssl.c | 146 static int read_string_inner(UI *ui, UI_STRING *uis, int echo, int strip_nl); 148 static int read_string(UI *ui, UI_STRING *uis); 149 static int write_string(UI *ui, UI_STRING *uis); 174 write_string(UI *ui, UI_STRING *uis) in write_string() 189 read_string(UI *ui, UI_STRING *uis) in read_string() 243 read_string_inner(UI *ui, UI_STRING *uis, int echo, int strip_nl) in read_string_inner()
|
| HD | ui_locl.h | 84 int (*ui_write_string)(UI *ui, UI_STRING *uis); 90 int (*ui_read_string)(UI *ui, UI_STRING *uis); 139 STACK_OF(UI_STRING) *strings; /* We might want to prompt for more
|
| /dragonfly/crypto/libressl/apps/openssl/ |
| HD | apps.h | 160 int ui_read(UI *ui, UI_STRING *uis); 161 int ui_write(UI *ui, UI_STRING *uis);
|
| HD | apps.c | 297 ui_read(UI *ui, UI_STRING *uis) in ui_read() 318 ui_write(UI *ui, UI_STRING *uis) in ui_write()
|