Searched refs:prompt (Results 1 - 25 of 63) sorted by relevance

123

/barrelfish-master/lib/openssl-1.0.0d/crypto/ui/
H A Dui_compat.c59 int _ossl_old_des_read_pw_string(char *buf,int length,const char *prompt,int verify) argument
61 return UI_UTIL_read_pw_string(buf, length, prompt, verify);
64 int _ossl_old_des_read_pw(char *buf,char *buff,int size,const char *prompt,int verify) argument
66 return UI_UTIL_read_pw(buf, buff, size, prompt, verify);
H A Dui_util.c59 int UI_UTIL_read_pw_string(char *buf,int length,const char *prompt,int verify) argument
64 ret=UI_UTIL_read_pw(buf,buff,(length>BUFSIZ)?BUFSIZ:length,prompt,verify);
69 int UI_UTIL_read_pw(char *buf,char *buff,int size,const char *prompt,int verify) argument
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,
H A Dui_compat.h77 int _ossl_old_des_read_pw_string(char *buf,int length,const char *prompt,int verify);
78 int _ossl_old_des_read_pw(char *buf,char *buff,int size,const char *prompt,int verify);
H A Dui.h87 /* The following functions are used to add strings to be printed and prompt
88 strings to prompt for data. The names are UI_{add,dup}_<function>_string
92 add add a text or prompt string. The pointers given to these
94 dup make a copy of the text or prompt string, then add the copy
99 input use the string as data prompt.
100 verify use the string as verification prompt. This
108 and are typically used when one wants to prompt for a yes/no response.
111 All of the functions in this group take a UI and a prompt string.
130 int UI_add_input_string(UI *ui, const char *prompt, int flags,
132 int UI_dup_input_string(UI *ui, const char *prompt, in
[all...]
H A Dui_lib.c139 static UI_STRING *general_allocate_prompt(UI *ui, const char *prompt, argument
145 if (prompt == NULL)
156 ret->out_string=prompt;
165 static int general_allocate_string(UI *ui, const char *prompt, argument
170 UI_STRING *s = general_allocate_prompt(ui, prompt, prompt_freeable,
191 const char *prompt, const char *action_desc,
219 s = general_allocate_prompt(ui, prompt, prompt_freeable,
242 direct reference to the prompt. */
243 int UI_add_input_string(UI *ui, const char *prompt, int flags, argument
246 return general_allocate_string(ui, prompt,
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
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
414 char *prompt = NULL; local
[all...]
/barrelfish-master/lib/openssl-1.0.0d/crypto/des/
H A Dread2pwd.c117 int DES_read_password(DES_cblock *key, const char *prompt, int verify) argument
122 if ((ok=UI_UTIL_read_pw(buf,buff,BUFSIZ,prompt,verify)) == 0)
129 int DES_read_2passwords(DES_cblock *key1, DES_cblock *key2, const char *prompt, argument
135 if ((ok=UI_UTIL_read_pw(buf,buff,BUFSIZ,prompt,verify)) == 0)
H A Dread_pwd.c216 int des_read_pw_string(char *buf, int length, const char *prompt, argument
222 ret=des_read_pw(buf,buff,(length>BUFSIZ)?BUFSIZ:length,prompt,verify);
229 int des_read_pw(char *buf, char *buff, int size, const char *prompt, int verify) argument
238 int des_read_pw(char *buf, char *buff, int size, char *prompt, int verify) argument
259 int des_read_pw(char *buf, char *buff, int size, const char *prompt, argument
361 fputs(prompt,stderr);
373 fprintf(stderr,"\nVerifying password - %s",prompt);
H A Ddes_old.c228 int _ossl_old_des_read_password(_ossl_old_des_cblock *key, const char *prompt, argument
231 return DES_read_password(key, prompt, verify);
234 const char *prompt, int verify)
236 return DES_read_2passwords(key1, key2, prompt, verify);
233 _ossl_old_des_read_2passwords(_ossl_old_des_cblock *key1, _ossl_old_des_cblock *key2, const char *prompt, int verify) argument
H A Ddes.h235 int DES_read_password(DES_cblock *key, const char *prompt, int verify);
236 int DES_read_2passwords(DES_cblock *key1, DES_cblock *key2, const char *prompt,
/barrelfish-master/lib/openssl-1.0.0d/crypto/evp/
H A Devp_key.c69 void EVP_set_pw_prompt(const char *prompt) argument
71 if (prompt == NULL)
75 strncpy(prompt_string,prompt,79);
91 int EVP_read_pw_string(char *buf, int len, const char *prompt, int verify) argument
93 return EVP_read_pw_string_min(buf, 0, len, prompt, verify);
96 int EVP_read_pw_string_min(char *buf, int min, int len, const char *prompt, int verify) argument
102 if ((prompt == NULL) && (prompt_string[0] != '\0'))
103 prompt=prompt_string;
105 UI_add_input_string(ui,prompt,0,buf,min,(len>=BUFSIZ)?BUFSIZ-1:len);
107 UI_add_verify_string(ui,prompt,
[all...]
/barrelfish-master/include/openssl/
H A Dui_compat.h77 int _ossl_old_des_read_pw_string(char *buf,int length,const char *prompt,int verify);
78 int _ossl_old_des_read_pw(char *buf,char *buff,int size,const char *prompt,int verify);
H A Dui.h87 /* The following functions are used to add strings to be printed and prompt
88 strings to prompt for data. The names are UI_{add,dup}_<function>_string
92 add add a text or prompt string. The pointers given to these
94 dup make a copy of the text or prompt string, then add the copy
99 input use the string as data prompt.
100 verify use the string as verification prompt. This
108 and are typically used when one wants to prompt for a yes/no response.
111 All of the functions in this group take a UI and a prompt string.
130 int UI_add_input_string(UI *ui, const char *prompt, int flags,
132 int UI_dup_input_string(UI *ui, const char *prompt, in
[all...]
H A Drsa.h313 int (*cb)(char *buf, int len, const char *prompt, int verify),
316 int (*cb)(char *buf, int len, const char *prompt, int verify),
320 int (*cb)(char *buf, int len, const char *prompt,
323 int (*cb)(char *buf, int len, const char *prompt,
H A Ddes.h235 int DES_read_password(DES_cblock *key, const char *prompt, int verify);
236 int DES_read_2passwords(DES_cblock *key1, DES_cblock *key2, const char *prompt,
/barrelfish-master/include/linenoise/
H A Dlinenoise.h55 char *linenoise(const char *prompt);
/barrelfish-master/lib/libc/gen/
H A Dreadpassphrase.c46 readpassphrase(const char *prompt, char *buf, size_t bufsiz, int flags) argument
127 (void)_write(output, prompt, strlen(prompt));
190 getpass(const char *prompt) argument
194 if (readpassphrase(prompt, buf, sizeof(buf), RPP_ECHO_OFF) == NULL)
/barrelfish-master/lib/openssl-1.0.0d/crypto/asn1/
H A Dn_pkey.c110 int (*cb)(char *buf, int len, const char *prompt,
115 int (*cb)(char *buf, int len, const char *prompt,
122 int (*cb)(char *buf, int len, const char *prompt, int verify),
234 int (*cb)(char *buf, int len, const char *prompt,
241 int (*cb)(char *buf, int len, const char *prompt, int verify),
281 int (*cb)(char *buf, int len, const char *prompt,
114 i2d_Netscape_RSA(const RSA *a, unsigned char **pp, int (*cb)(char *buf, int len, const char *prompt, int verify)) argument
121 i2d_RSA_NET(const RSA *a, unsigned char **pp, int (*cb)(char *buf, int len, const char *prompt, int verify), int sgckey) argument
233 d2i_Netscape_RSA(RSA **a, const unsigned char **pp, long length, int (*cb)(char *buf, int len, const char *prompt, int verify)) argument
240 d2i_RSA_NET(RSA **a, const unsigned char **pp, long length, int (*cb)(char *buf, int len, const char *prompt, int verify), int sgckey) argument
280 d2i_RSA_NET_2(RSA **a, ASN1_OCTET_STRING *os, int (*cb)(char *buf, int len, const char *prompt, int verify), int sgckey) argument
/barrelfish-master/lib/linenoise/
H A Dlinenoise.c142 const char *prompt; /* Prompt to display. */ member in struct:linenoiseState
469 size_t plen = strlen(l->prompt);
489 /* Write the prompt and the current buffer content */
490 abAppend(&ab,l->prompt,strlen(l->prompt));
508 int plen = strlen(l->prompt);
541 /* Write the prompt and the current buffer content */
542 abAppend(&ab,l->prompt,strlen(l->prompt));
545 /* If we are at the very end of the screen with our prompt, w
728 linenoiseEdit(int stdin_fd, int stdout_fd, char *buf, size_t buflen, const char *prompt) argument
934 linenoiseRaw(char *buf, size_t buflen, const char *prompt) argument
964 linenoise(const char *prompt) argument
[all...]
/barrelfish-master/lib/openssl-1.0.0d/crypto/rsa/
H A Drsa.h313 int (*cb)(char *buf, int len, const char *prompt, int verify),
316 int (*cb)(char *buf, int len, const char *prompt, int verify),
320 int (*cb)(char *buf, int len, const char *prompt,
323 int (*cb)(char *buf, int len, const char *prompt,
/barrelfish-master/usr/eclipseclp/lib_tcl/widget/
H A Dconsole.tcl47 ## -prompt string DEFAULT: {([file tail [pwd]]) [history nextid] % }
51 ## Specifies the prompt color.
200 widget add Console option {-prompt prompt Prompt {[history nextid] % }}
202 widget add Console option {-prompt prompt Prompt \
316 prompt $w "console display active\n"
319 foreach col {prompt stdout stderr stdin proc} {
358 -promptcolor { $c tag config prompt -foreground $val }
380 -prompt {
[all...]
/barrelfish-master/lib/openssl-1.0.0d/apps/
H A Dopenssl.c222 MS_STATIC const char *prompt; local
329 prompt=">";
330 else prompt="OpenSSL> ";
331 fputs(prompt,stdout);
/barrelfish-master/tools/imx8x/
H A Dboard_ctrl.py81 self.prompt = "aos-ctrl> "
100 "Exit the command prompt."
/barrelfish-master/usr/eclipseclp/Kernel/lib/
H A Dquintus_util.pl46 % predicate to obtain a Quintus-like prompt
/barrelfish-master/usr/eclipseclp/Kernel/src/
H A Dec_io.h68 #define StreamPrompt(nst) (nst)->prompt
159 #define DONT_PROMPT 0x0100 /* don't print the next prompt */
321 dident prompt,stream_id pstream, int size));
/barrelfish-master/usr/eclipseclp/lib_tcl/
H A Declipse.tcl272 label .ec_stream_input_box.prompt -width 40 -text $Msg
278 pack .ec_stream_input_box.prompt -side top -fill x

Completed in 217 milliseconds

123