Searched refs:ui (Results 1 - 25 of 41) sorted by relevance

12

/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/ui/
H A Dui_locl.h1 /* crypto/ui/ui.h -*- mode:C; c-file-style: "eay" -*- */
62 #include <openssl/ui.h>
80 int (*ui_open_session)(UI *ui);
82 int (*ui_write_string)(UI *ui, UI_STRING *uis);
86 int (*ui_flush)(UI *ui);
88 int (*ui_read_string)(UI *ui, UI_STRING *uis);
90 int (*ui_close_session)(UI *ui);
98 char *(*ui_construct_prompt)(UI *ui, const char *object_desc,
H A Dui_util.c1 /* crypto/ui/ui_util.c -*- mode:C; c-file-style: "eay" -*- */
72 UI *ui; local
77 ui = UI_new();
78 if (ui)
80 ok = UI_add_input_string(ui,prompt,0,buf,0,size-1);
82 ok = UI_add_verify_string(ui,prompt,0,buff,0,size-1,
85 ok=UI_process(ui);
86 UI_free(ui);
H A Dui.h1 /* crypto/ui/ui.h -*- mode:C; c-file-style: "eay" -*- */
85 void UI_free(UI *ui);
130 int UI_add_input_string(UI *ui, const char *prompt, int flags,
132 int UI_dup_input_string(UI *ui, const char *prompt, int flags,
134 int UI_add_verify_string(UI *ui, const char *prompt, int flags,
136 int UI_dup_verify_string(UI *ui, const char *prompt, int flags,
138 int UI_add_input_boolean(UI *ui, const char *prompt, const char *action_desc,
141 int UI_dup_input_boolean(UI *ui, const char *prompt, const char *action_desc,
144 int UI_add_info_string(UI *ui, cons
[all...]
H A Dui_lib.c1 /* crypto/ui/ui_lib.c -*- mode:C; c-file-style: "eay" -*- */
63 #include <openssl/ui.h>
117 void UI_free(UI *ui) argument
119 if (ui == NULL)
121 sk_UI_STRING_pop_free(ui->strings,free_string);
122 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_UI, ui, &ui->ex_data);
123 OPENSSL_free(ui);
126 static int allocate_string_stack(UI *ui) argument
128 if (ui
139 general_allocate_prompt(UI *ui, const char *prompt, int prompt_freeable, enum UI_string_types type, int input_flags, char *result_buf) argument
165 general_allocate_string(UI *ui, const char *prompt, int prompt_freeable, enum UI_string_types type, int input_flags, char *result_buf, int minsize, int maxsize, const char *test_buf) argument
190 general_allocate_boolean(UI *ui, const char *prompt, const char *action_desc, const char *ok_chars, const char *cancel_chars, int prompt_freeable, enum UI_string_types type, int input_flags, char *result_buf) argument
243 UI_add_input_string(UI *ui, const char *prompt, int flags, char *result_buf, int minsize, int maxsize) argument
251 UI_dup_input_string(UI *ui, const char *prompt, int flags, char *result_buf, int minsize, int maxsize) argument
270 UI_add_verify_string(UI *ui, const char *prompt, int flags, char *result_buf, int minsize, int maxsize, const char *test_buf) argument
277 UI_dup_verify_string(UI *ui, const char *prompt, int flags, char *result_buf, int minsize, int maxsize, const char *test_buf) argument
296 UI_add_input_boolean(UI *ui, const char *prompt, const char *action_desc, const char *ok_chars, const char *cancel_chars, int flags, char *result_buf) argument
304 UI_dup_input_boolean(UI *ui, const char *prompt, const char *action_desc, const char *ok_chars, const char *cancel_chars, int flags, char *result_buf) argument
364 UI_add_info_string(UI *ui, const char *text) argument
370 UI_dup_info_string(UI *ui, const char *text) argument
388 UI_add_error_string(UI *ui, const char *text) argument
394 UI_dup_error_string(UI *ui, const char *text) argument
411 UI_construct_prompt(UI *ui, const char *object_desc, const char *object_name) argument
446 UI_add_user_data(UI *ui, void *user_data) argument
453 UI_get0_user_data(UI *ui) argument
458 UI_get0_result(UI *ui, int i) argument
473 print_error(const char *str, size_t len, UI *ui) argument
487 UI_process(UI *ui) argument
549 UI_ctrl(UI *ui, int cmd, long i, void *p, void (*f)(void)) argument
607 UI_get_method(UI *ui) argument
612 UI_set_method(UI *ui, const UI_METHOD *meth) argument
641 UI_method_set_opener(UI_METHOD *method, int (*opener)(UI *ui)) argument
652 UI_method_set_writer(UI_METHOD *method, int (*writer)(UI *ui, UI_STRING *uis)) argument
663 UI_method_set_flusher(UI_METHOD *method, int (*flusher)(UI *ui)) argument
674 UI_method_set_reader(UI_METHOD *method, int (*reader)(UI *ui, UI_STRING *uis)) argument
685 UI_method_set_closer(UI_METHOD *method, int (*closer)(UI *ui)) argument
696 UI_method_set_prompt_constructor(UI_METHOD *method, char *(*prompt_constructor)(UI* ui, const char* object_desc, const char* object_name)) argument
845 UI_set_result(UI *ui, UI_STRING *uis, const char *result) argument
[all...]
H A Dui_openssl.c1 /* crypto/ui/ui_openssl.c -*- mode:C; c-file-style: "eay" -*- */
317 static int read_string_inner(UI *ui, UI_STRING *uis, int echo, int strip_nl);
319 static int read_string(UI *ui, UI_STRING *uis);
320 static int write_string(UI *ui, UI_STRING *uis);
322 static int open_console(UI *ui);
323 static int echo_console(UI *ui);
324 static int noecho_console(UI *ui);
325 static int close_console(UI *ui);
346 static int write_string(UI *ui, UI_STRING *uis) argument
361 static int read_string(UI *ui, UI_STRIN argument
419 read_string_inner(UI *ui, UI_STRING *uis, int echo, int strip_nl) argument
487 open_console(UI *ui) argument
536 noecho_console(UI *ui) argument
558 echo_console(UI *ui) argument
580 close_console(UI *ui) argument
[all...]
H A Dui_compat.h1 /* crypto/ui/ui.h -*- mode:C; c-file-style: "eay" -*- */
63 #include <openssl/ui.h>
H A DMakefile2 # OpenSSL/crypto/ui/Makefile
5 DIR= ui
29 EXHEADER= ui.h ui_compat.h
83 ui_compat.o: ../../include/openssl/stack.h ../../include/openssl/ui.h
90 ui_err.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h ui_err.c
97 ui_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
105 ui_openssl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
111 ui_util.o: ../../include/openssl/ui.h ui_locl.h ui_util.c
H A Dui_err.c1 /* crypto/ui/ui_err.c */
63 #include <openssl/ui.h>
/barrelfish-2018-10-04/include/openssl/
H A Dui.h1 /* crypto/ui/ui.h -*- mode:C; c-file-style: "eay" -*- */
85 void UI_free(UI *ui);
130 int UI_add_input_string(UI *ui, const char *prompt, int flags,
132 int UI_dup_input_string(UI *ui, const char *prompt, int flags,
134 int UI_add_verify_string(UI *ui, const char *prompt, int flags,
136 int UI_dup_verify_string(UI *ui, const char *prompt, int flags,
138 int UI_add_input_boolean(UI *ui, const char *prompt, const char *action_desc,
141 int UI_dup_input_boolean(UI *ui, const char *prompt, const char *action_desc,
144 int UI_add_info_string(UI *ui, cons
[all...]
H A Dui_compat.h1 /* crypto/ui/ui.h -*- mode:C; c-file-style: "eay" -*- */
63 #include <openssl/ui.h>
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/evp/
H A Devp_key.c64 #include <openssl/ui.h>
100 UI *ui; local
104 ui = UI_new();
105 UI_add_input_string(ui,prompt,0,buf,min,(len>=BUFSIZ)?BUFSIZ-1:len);
107 UI_add_verify_string(ui,prompt,0,
109 ret = UI_process(ui);
110 UI_free(ui);
/barrelfish-2018-10-04/usr/eclipseclp/CPViz/viztool/src/components/
H A DExternalLinkContentViewerUI.java48 URI ui = u.toURI();
49 Desktop.getDesktop().browse(ui);
/barrelfish-2018-10-04/tools/harness/
H A Dcheckout.py11 from mercurial import hg, ui, node, error, commands namespace
69 diffui = ui.ui()
115 return CheckoutHg(base_dir, hg.repository(ui.ui(), base_dir))
/barrelfish-2018-10-04/lib/openssl-1.0.0d/ssl/
H A Dd1_enc.c215 unsigned long ui; local
226 for (ui=0; ui<l; ui++) printf(" %02x", rec->input[ui]);
H A Dkssl.c1032 int i, ui, uj; local
1036 for (ui=0; ui < (int)princ->realm.length; ui++) putchar(princ->realm.data[ui]);
2029 unsigned int ui; local
2032 for (ui=0; ui < authentp->length; ui++) printf("%02x ",p[ui]);
[all...]
H A Dt1_enc.c711 unsigned long ui; local
722 for (ui=0; ui<l; ui++) printf(" %02x", rec->input[ui]);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/des/
H A DMakefile114 cbc_cksm.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
120 cbc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
127 cfb64ede.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
133 cfb64enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
139 cfb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
145 des_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
151 des_old.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
157 des_old2.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
163 ecb3_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
170 ecb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui
[all...]
H A Dread2pwd.c114 #include <openssl/ui.h>
/barrelfish-2018-10-04/lib/openssl-1.0.0d/engines/
H A De_chil.c66 #include <openssl/ui.h>
1219 UI *ui = UI_new_method(ui_method); local
1220 if (ui)
1223 char *prompt = UI_construct_prompt(ui,
1226 ok = UI_add_input_string(ui,prompt,
1229 UI_add_user_data(ui, callback_data);
1230 UI_ctrl(ui, UI_CTRL_PRINT_ERRORS, 1, 0, 0);
1235 ok=UI_process(ui);
1237 while (ok < 0 && UI_ctrl(ui, UI_CTRL_IS_REDOABLE, 0, 0, 0));
1242 UI_free(ui);
1261 UI *ui; local
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/mdc2/
H A DMakefile85 mdc2_one.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
92 mdc2dgst.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/err/
H A Derr_all.c95 #include <openssl/ui.h>
H A DMakefile101 err_all.o: ../../include/openssl/ts.h ../../include/openssl/ui.h
/barrelfish-2018-10-04/lib/libc/rpc/
H A Dclnt_raw.c267 clnt_raw_control(CLIENT *cl, u_int ui, void *str) argument
/barrelfish-2018-10-04/lib/openssl-1.0.0d/demos/engines/cluster_labs/
H A DMakefile112 rsaref.o: ../../../include/openssl/ui.h rsaref.c rsaref_err.c rsaref_err.h
/barrelfish-2018-10-04/lib/openssl-1.0.0d/demos/engines/ibmca/
H A DMakefile112 rsaref.o: ../../../include/openssl/ui.h rsaref.c rsaref_err.c rsaref_err.h

Completed in 203 milliseconds

12