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

1234

/freebsd-11-stable/crypto/openssl/crypto/ui/
H A Dui_locl.h1 /* crypto/ui/ui.h */
63 # include <openssl/ui.h>
81 int (*ui_open_session) (UI *ui);
82 int (*ui_write_string) (UI *ui, UI_STRING *uis);
87 int (*ui_flush) (UI *ui);
88 int (*ui_read_string) (UI *ui, UI_STRING *uis);
89 int (*ui_close_session) (UI *ui);
97 char *(*ui_construct_prompt) (UI *ui, const char *object_desc,
H A Dui_util.c1 /* crypto/ui/ui_util.c */
76 UI *ui; local
81 ui = UI_new();
82 if (ui) {
83 ok = UI_add_input_string(ui, prompt, 0, buf, 0, size - 1);
85 ok = UI_add_verify_string(ui, prompt, 0, buff, 0, size - 1, buf);
87 ok = UI_process(ui);
88 UI_free(ui);
H A Dui.h1 /* crypto/ui/ui.h */
87 void UI_free(UI *ui);
132 int UI_add_input_string(UI *ui, const char *prompt, int flags,
134 int UI_dup_input_string(UI *ui, const char *prompt, int flags,
136 int UI_add_verify_string(UI *ui, const char *prompt, int flags,
139 int UI_dup_verify_string(UI *ui, const char *prompt, int flags,
142 int UI_add_input_boolean(UI *ui, const char *prompt, const char *action_desc,
145 int UI_dup_input_boolean(UI *ui, const char *prompt, const char *action_desc,
148 int UI_add_info_string(UI *ui, cons
[all...]
H A Dui_lib.c1 /* crypto/ui/ui_lib.c */
64 #include <openssl/ui.h>
115 void UI_free(UI *ui) argument
117 if (ui == NULL)
119 sk_UI_STRING_pop_free(ui->strings, free_string);
120 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_UI, ui, &ui->ex_data);
121 OPENSSL_free(ui);
124 static int allocate_string_stack(UI *ui) argument
126 if (ui
135 general_allocate_prompt(UI *ui, const char *prompt, int prompt_freeable, enum UI_string_types type, int input_flags, char *result_buf) argument
157 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
182 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
232 UI_add_input_string(UI *ui, const char *prompt, int flags, char *result_buf, int minsize, int maxsize) argument
241 UI_dup_input_string(UI *ui, const char *prompt, int flags, char *result_buf, int minsize, int maxsize) argument
259 UI_add_verify_string(UI *ui, const char *prompt, int flags, char *result_buf, int minsize, int maxsize, const char *test_buf) argument
268 UI_dup_verify_string(UI *ui, const char *prompt, int flags, char *result_buf, int minsize, int maxsize, const char *test_buf) argument
287 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
296 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
352 UI_add_info_string(UI *ui, const char *text) argument
358 UI_dup_info_string(UI *ui, const char *text) argument
374 UI_add_error_string(UI *ui, const char *text) argument
380 UI_dup_error_string(UI *ui, const char *text) argument
395 UI_construct_prompt(UI *ui, const char *object_desc, const char *object_name) argument
429 UI_add_user_data(UI *ui, void *user_data) argument
436 UI_get0_user_data(UI *ui) argument
441 UI_get0_result(UI *ui, int i) argument
454 print_error(const char *str, size_t len, UI *ui) argument
468 UI_process(UI *ui) argument
531 UI_ctrl(UI *ui, int cmd, long i, void *p, void (*f) (void)) argument
586 UI_get_method(UI *ui) argument
591 UI_set_method(UI *ui, const UI_METHOD *meth) argument
620 UI_method_set_opener(UI_METHOD *method, int (*opener) (UI *ui)) argument
629 UI_method_set_writer(UI_METHOD *method, int (*writer) (UI *ui, UI_STRING *uis)) argument
639 UI_method_set_flusher(UI_METHOD *method, int (*flusher) (UI *ui)) argument
648 UI_method_set_reader(UI_METHOD *method, int (*reader) (UI *ui, UI_STRING *uis)) argument
658 UI_method_set_closer(UI_METHOD *method, int (*closer) (UI *ui)) argument
667 UI_method_set_prompt_constructor(UI_METHOD *method, char *(*prompt_constructor) (UI *ui, const char *object_desc, const char *object_name)) argument
809 UI_set_result(UI *ui, UI_STRING *uis, const char *result) argument
[all...]
H A Dui_openssl.c1 /* crypto/ui/ui_openssl.c */
315 static int read_string_inner(UI *ui, UI_STRING *uis, int echo, int strip_nl);
317 static int read_string(UI *ui, UI_STRING *uis);
318 static int write_string(UI *ui, UI_STRING *uis);
320 static int open_console(UI *ui);
321 static int echo_console(UI *ui);
322 static int noecho_console(UI *ui);
323 static int close_console(UI *ui);
345 static int write_string(UI *ui, UI_STRING *uis) argument
359 static int read_string(UI *ui, UI_STRIN argument
413 read_string_inner(UI *ui, UI_STRING *uis, int echo, int strip_nl) argument
476 open_console(UI *ui) argument
559 noecho_console(UI *ui) argument
584 echo_console(UI *ui) argument
605 close_console(UI *ui) argument
[all...]
H A Dui_compat.h1 /* crypto/ui/ui.h */
64 # include <openssl/ui.h>
H A DMakefile2 # OpenSSL/crypto/ui/Makefile
5 DIR= ui
29 EXHEADER= ui.h ui_compat.h
85 ui_compat.o: ../../include/openssl/stack.h ../../include/openssl/ui.h
92 ui_err.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h ui_err.c
99 ui_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
107 ui_openssl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
113 ui_util.o: ../../include/openssl/ui.h ui_locl.h ui_util.c
H A Dui_err.c1 /* crypto/ui/ui_err.c */
64 #include <openssl/ui.h>
/freebsd-11-stable/contrib/tcpdump/
H A Dprint-tftp.c96 u_int ui; local
123 ui = fn_printztn(ndo, bp, length, ndo->ndo_snapend);
125 if (ui == 0)
127 bp += ui;
128 length -= ui;
134 ui = fn_printztn(ndo, bp, length, ndo->ndo_snapend);
135 if (ui == 0)
137 bp += ui;
138 length -= ui;
145 ui
[all...]
H A Dprint-ldp.c250 u_int ui,vc_info_len, vc_info_tlv_type, vc_info_tlv_len,idx; local
483 ui = EXTRACT_32BITS(tptr);
486 ui&0x3fffffff,
487 ui&0x80000000 ? "Fatal error" : "Advisory Notification",
488 ui&0x40000000 ? "do" : "don't"));
489 ui = EXTRACT_32BITS(tptr);
491 if (ui)
492 ND_PRINT((ndo, ", causing Message ID: 0x%08x", ui));
506 ui = EXTRACT_32BITS(tptr);
507 if (ui)
[all...]
/freebsd-11-stable/stand/libsa/
H A Dudp.c64 struct udpiphdr *ui; local
79 ui = (struct udpiphdr *)pkt - 1;
80 bzero(ui, sizeof(*ui));
89 ui->ui_pr = IPPROTO_UDP;
90 ui->ui_len = uh->uh_ulen;
91 ui->ui_src = d->myip;
92 ui->ui_dst = d->destip;
95 uh->uh_sum = in_cksum(ui, len + sizeof (struct ip));
141 struct udpiphdr *ui; local
[all...]
/freebsd-11-stable/crypto/openssl/crypto/evp/
H A Devp_key.c64 #include <openssl/ui.h>
102 UI *ui; local
106 ui = UI_new();
107 if (ui == NULL)
109 if (UI_add_input_string(ui, prompt, 0, buf, min,
112 && UI_add_verify_string(ui, prompt, 0, buff, min,
116 ret = UI_process(ui);
119 UI_free(ui);
/freebsd-11-stable/usr.sbin/sa/
H A Dusrdb.c186 struct userinfo uistore, *ui = &uistore; local
195 memcpy(ui, data.data, sizeof(struct userinfo));
198 user_from_uid(ui->ui_uid, 0), (uintmax_t)ui->ui_calls);
200 t = (ui->ui_utime + ui->ui_stime) / 1000000;
206 /* ui->ui_calls is always != 0 */
209 ui->ui_io / ui->ui_calls, "avio");
211 printf("%12.0f%s", ui
[all...]
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/
H A Dt_convfp.c55 unsigned int ui; local
60 ui = (unsigned int)d;
62 if (ui != UINT_TESTVALUE)
64 ui, ui, UINT_TESTVALUE, UINT_TESTVALUE);
/freebsd-11-stable/crypto/heimdal/include/
H A Dcrypto-headers.h19 #include <openssl/ui.h>
46 #include <hcrypto/ui.h>
/freebsd-11-stable/crypto/heimdal/include/hcrypto/
H A DMakefile.am28 ui.h
/freebsd-11-stable/contrib/gcc/
H A Dfp-test.c76 volatile unsigned int ui; variable
119 ui = f1;
130 f1 = ui;
165 ui = d1;
176 d1 = ui;
211 ui = D1;
222 D1 = ui;
/freebsd-11-stable/crypto/openssl/crypto/des/
H A DMakefile118 cbc_cksm.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
124 cbc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
131 cfb64ede.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
137 cfb64enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
143 cfb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
149 des_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
155 des_old.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
161 des_old2.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
167 ecb3_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
174 ecb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui
[all...]
H A Dread2pwd.c114 #include <openssl/ui.h>
/freebsd-11-stable/kerberos5/include/
H A Dcrypto-headers.h12 #include <openssl/ui.h>
/freebsd-11-stable/sys/sys/
H A Dresourcevar.h112 #define UIDINFO_VMSIZE_LOCK(ui) mtx_lock(&((ui)->ui_vmsize_mtx))
113 #define UIDINFO_VMSIZE_UNLOCK(ui) mtx_unlock(&((ui)->ui_vmsize_mtx))
/freebsd-11-stable/stand/sparc64/boot1/
H A Dboot1.c599 u_int ui; local
631 ui = (u_int)va_arg(ap, int);
632 if (ui < (int)ui) {
633 ui = -ui;
636 s = __uitoa(nbuf, ui, 10);
652 ui = (u_int)va_arg(ap, u_int);
653 s = __uitoa(nbuf, ui, 8);
672 ui
728 __uitoa(char *buf, u_int ui, int base) argument
[all...]
/freebsd-11-stable/stand/powerpc/boot1.chrp/
H A Dboot1.c624 u_int ui; local
656 ui = (u_int)va_arg(ap, int);
657 if (ui < (int)ui) {
658 ui = -ui;
661 s = __uitoa(nbuf, ui, 10);
677 ui = (u_int)va_arg(ap, u_int);
678 s = __uitoa(nbuf, ui, 8);
697 ui
753 __uitoa(char *buf, u_int ui, int base) argument
[all...]
/freebsd-11-stable/contrib/amd/hlfsd/
H A Dstubs.c74 u_int ui; local
76 ui = ROOTID;
77 memcpy(root.fh_data, &ui, sizeof(ui));
79 ui = SLINKID;
80 memcpy(slink.fh_data, &ui, sizeof(ui));
82 ui = INVALIDID;
83 memcpy(un_fhandle.fh_data, &ui, sizeof(ui));
[all...]
/freebsd-11-stable/stand/i386/libfirewire/
H A Dfwohci.c269 uint8_t ui[8]; local
308 ui[i] = FW_EUI64_BYTE(&sc->eui,i);
310 ui[0], ui[1], ui[2], ui[3], ui[4], ui[5], ui[6], ui[
[all...]

Completed in 147 milliseconds

1234