Searched refs:prompt (Results 151 - 175 of 278) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/netcat/
H A Dsocks.c115 char prompt[512]; local
118 snprintf(prompt, sizeof(prompt), "Proxy password for %s@%s: ",
120 if (readpassphrase(prompt, pw, sizeof(pw), RPP_REQUIRE_TTY) == NULL)
/freebsd-11-stable/contrib/dialog/
H A Drangebox.c218 char *prompt = dlg_strclone(cprompt); local
238 dlg_auto_size(title, prompt, &height, &width, 0, 0);
302 dlg_print_autowrap(dialog, prompt, height, width);
416 free(prompt);
H A Dchecklist.c204 char *prompt = dlg_strclone(cprompt); local
213 dlg_tab_correct_str(prompt);
245 dlg_auto_size(title, prompt, &height, &width, MIN_HIGH, use_width);
248 dlg_auto_size(title, prompt,
279 dlg_print_autowrap(dialog, prompt, height, width);
287 * After displaying the prompt, we know how much space we really have.
584 free(prompt);
H A Dmenubox.c348 char *prompt = dlg_strclone(cprompt); local
357 dlg_tab_correct_str(prompt);
368 dlg_auto_size(title, prompt, &height, &width, MIN_HIGH, use_width);
371 dlg_auto_size(title, prompt,
395 dlg_print_autowrap(dialog, prompt, height, width);
403 * After displaying the prompt, we know how much space we really have.
726 free(prompt);
H A Dtreeview.c209 char *prompt = dlg_strclone(cprompt); local
225 dlg_tab_correct_str(prompt);
257 dlg_auto_size(title, prompt, &height, &width, MIN_HIGH, use_width);
260 dlg_auto_size(title, prompt, &height, &width, MIN_HIGH + use_height, use_width);
280 dlg_print_autowrap(dialog, prompt, height, width);
288 * After displaying the prompt, we know how much space we really have.
558 free(prompt);
/freebsd-11-stable/crypto/heimdal/appl/ftp/ftp/
H A Dmain.c234 simple_readline(char *prompt) argument
237 printf ("%s", prompt);
249 readline(char *prompt) argument
251 return simple_readline (prompt);
/freebsd-11-stable/crypto/heimdal/lib/hx509/
H A Dhx509.h99 const char *prompt; member in struct:hx509_prompt
/freebsd-11-stable/usr.sbin/ppp/
H A DMakefile10 mbuf.c mp.c ncp.c ncpaddr.c pap.c physical.c pred.c probe.c prompt.c \
H A Ddatalink.h52 struct prompt;
H A Dslcompress.c62 #include "prompt.h"
591 prompt_Printf(arg->prompt, "VJ compression statistics:\n");
592 prompt_Printf(arg->prompt, " Out: %d (compress) / %d (total)",
595 prompt_Printf(arg->prompt, " %d (miss) / %d (search)\n",
598 prompt_Printf(arg->prompt, " In: %d (compress), %d (uncompress)",
601 prompt_Printf(arg->prompt, " %d (error), %d (tossed)\n",
H A Dipcp.c97 #include "prompt.h"
365 prompt_Printf(arg->prompt, "%s [%s]\n", ipcp->fsm.name,
368 prompt_Printf(arg->prompt, " His side: %s, %s\n",
370 prompt_Printf(arg->prompt, " My side: %s, %s\n",
372 prompt_Printf(arg->prompt, " Queued packets: %lu\n",
376 prompt_Printf(arg->prompt, "\nDefaults:\n");
377 prompt_Printf(arg->prompt, " FSM retry = %us, max %u Config"
381 prompt_Printf(arg->prompt, " My Address: %s\n",
384 prompt_Printf(arg->prompt, " Trigger address: %s\n",
387 prompt_Printf(arg->prompt, " V
[all...]
/freebsd-11-stable/usr.sbin/bsdconfig/startup/
H A Dmisc52 local prompt="$msg_miscellaneous_menu_text"
266 \"\$prompt\" \
278 --menu \"\$prompt\" \
290 # dialog_input_value [ $prompt [ $init ] ]
297 local prompt="$1" _input="$2"
300 f_dialog_input _input "$prompt" "$_input" "$hline_alnum_tab_enter"
/freebsd-11-stable/lib/libedit/TEST/
H A Dtc1.c70 static char *prompt(EditLine *);
74 prompt(EditLine *el) function
153 el_set(el, EL_PROMPT_ESC, prompt, '\1');/* Set the prompt function */
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DEditline.cpp308 std::string prompt = m_set_prompt; local
309 if (use_line_numbers && prompt.length() == 0) {
310 prompt = ": ";
312 std::string continuation_prompt = prompt;
317 while (continuation_prompt.length() < prompt.length()) {
320 while (prompt.length() < continuation_prompt.length()) {
321 prompt += ' ';
329 (line_index == 0) ? prompt.c_str() : continuation_prompt.c_str());
332 return (line_index == 0) ? prompt : continuation_prompt;
426 auto prompt local
1296 SetPrompt(const char *prompt) argument
[all...]
/freebsd-11-stable/lib/libpam/modules/pam_unix/
H A Dpam_unix.c94 const char *pass, *user, *realpw, *prompt; local
123 prompt = login_getcapstr(lc, "passwd_prompt", NULL, NULL);
124 retval = pam_get_authtok(pamh, PAM_AUTHTOK, &pass, prompt);
/freebsd-11-stable/contrib/openpam/lib/libpam/
H A Dopenpam_ttyconv.c97 /* write prompt */
223 /* show prompt */
289 prompt(const char *message, char *response, int echo) function
339 if (prompt(msg[i]->msg, respbuf, 0) < 0 ||
344 if (prompt(msg[i]->msg, respbuf, 1) < 0 ||
/freebsd-11-stable/contrib/less/
H A Dprompt.c16 * A prompt is a message composed of various pieces, such as the
66 * Initialize the prompt prototype strings.
215 case 'n': /* First prompt in a new file? */
569 * Return a prompt.
570 * This depends on the prompt type (SHORT, MEDIUM, LONG), etc.
571 * If we can't come up with an appropriate prompt, return NULL
572 * and the caller will prompt with a colon.
577 char *prompt; local
581 prompt = pr_expand((ch_getflags() & CH_HELPFILE) ?
585 return (prompt);
[all...]
/freebsd-11-stable/usr.sbin/bsdinstall/scripts/
H A Dauto70 local prompt # Calculated below
91 prompt=$( printf "$format" )
92 f_dprintf "%s: Workaround prompt" "$0"
100 --yesno "$prompt" $height $width
/freebsd-11-stable/contrib/gdb/gdb/
H A Dabug-rom.c151 abug_cmds.prompt = "135Bug>"; /* monitor command prompt */
H A Dcpu32bug-rom.c149 cpu32bug_cmds.prompt = "CPU32Bug>"; /* monitor command prompt */
H A Ddbug-rom.c147 dbug_cmds.prompt = "dBUG>"; /* monitor command prompt */
H A Ddink32-rom.c162 dink32_cmds.prompt = "DINK32_603 >>";
H A Dremote-est.c109 {"he\r", /* Resets the prompt, and clears repeated cmds */
155 est_cmds.prompt = ">BKM>"; /* monitor command prompt */
H A Dremote-hms.c81 {"\003", /* Resets the prompt, and clears repeated cmds */
126 hms_cmds.prompt = ">"; /* monitor command prompt */
/freebsd-11-stable/crypto/heimdal/appl/su/
H A Dsu.c292 char prompt[128]; local
297 snprintf(prompt, sizeof(prompt), "%s's password: ", su->pw_name);
298 r = UI_UTIL_read_pw_string(pw_buf, sizeof(pw_buf), prompt, 0);

Completed in 151 milliseconds

1234567891011>>