| /src/external/mit/libcbor/dist/ |
| release.sh | 8 function prompt() { function 25 prompt "Is the changelog correct and complete?" 29 prompt "Is the Doxyfile version correct?" 33 prompt "Is the CMake version correct?" 37 prompt "Are the versions correct?" 67 prompt "Will proceed to tag the release with $TAG_NAME." 75 prompt "Have you added the release to https://github.com/PJK/libcbor/releases/tag/$TAG_NAME?" 88 prompt "Have you updated the tap?
|
| /src/usr.bin/skeyinfo/ |
| skeyinfo.c | 50 char name[100], prompt[1024]; local 80 if (getskeyprompt(&skey, name, prompt) == -1) { 90 printf("next %s", prompt);
|
| /src/external/gpl3/gdb/dist/readline/readline/examples/ |
| rltest.c | 56 char *temp, *prompt; local 64 prompt = "readline$ "; 69 temp = readline (prompt);
|
| rl-callbacktest.c | 32 const char *prompt = "rltest$ "; variable 55 and calling it from the line handler keeps one extra prompt from 82 rl_callback_handler_install (prompt, cb_linehandler);
|
| excallback.c | 19 interactively change the prompt (which is very nice imo). Also, I 73 * prompt, which can't be done using the regular interface since rl_prompt is 81 * to be re-echoed on the new prompt when it returns. Unfortunately, the default 82 * terminal configuration doesn't do this. After the prompt returns, the user 85 * the prompt and then type "bar" before the prompt returns (you have 3 86 * seconds). Notice how "bar" is re-echoed on the prompt after the prompt 89 * the same thing. When the prompt returns, you should not see "bar". Now type 98 int prompt = 1 variable [all...] |
| rl.c | 5 * usage: rl [-p prompt] [-u unit] [-d default] [-n nchars] 80 fprintf (stderr, "%s: usage: %s [-p prompt] [-u unit] [-d default] [-n nchars]\n", 89 char *temp, *prompt; local 105 prompt = "readline$ "; 114 prompt = optarg; 158 temp = readline (prompt);
|
| rlevent.c | 5 * usage: rl [-p prompt] [-u unit] [-d default] [-n nchars] 94 fprintf (stderr, "%s: usage: %s [-p prompt] [-u unit] [-d default] [-n nchars]\n", 103 char *temp, *prompt; local 119 prompt = "readline$ "; 128 prompt = optarg; 173 temp = readline (prompt);
|
| rl-timeout.c | 50 const char *prompt = "rl-timeout$ "; variable 64 temp = readline (prompt); 94 temp = readline (prompt); 121 and calling it from the line handler keeps one extra prompt from 144 rl_callback_handler_install (prompt, cb_linehandler); 198 rl_callback_handler_install (prompt, cb_linehandler);
|
| /src/external/gpl3/gdb.old/dist/readline/readline/examples/ |
| rltest.c | 56 char *temp, *prompt; local 64 prompt = "readline$ "; 69 temp = readline (prompt);
|
| rl-callbacktest.c | 32 const char *prompt = "rltest$ "; variable 55 and calling it from the line handler keeps one extra prompt from 82 rl_callback_handler_install (prompt, cb_linehandler);
|
| excallback.c | 19 interactively change the prompt (which is very nice imo). Also, I 73 * prompt, which can't be done using the regular interface since rl_prompt is 81 * to be re-echoed on the new prompt when it returns. Unfortunately, the default 82 * terminal configuration doesn't do this. After the prompt returns, the user 85 * the prompt and then type "bar" before the prompt returns (you have 3 86 * seconds). Notice how "bar" is re-echoed on the prompt after the prompt 89 * the same thing. When the prompt returns, you should not see "bar". Now type 98 int prompt = 1 variable [all...] |
| rl.c | 5 * usage: rl [-p prompt] [-u unit] [-d default] [-n nchars] 80 fprintf (stderr, "%s: usage: %s [-p prompt] [-u unit] [-d default] [-n nchars]\n", 89 char *temp, *prompt; local 105 prompt = "readline$ "; 114 prompt = optarg; 158 temp = readline (prompt);
|
| rlevent.c | 5 * usage: rl [-p prompt] [-u unit] [-d default] [-n nchars] 94 fprintf (stderr, "%s: usage: %s [-p prompt] [-u unit] [-d default] [-n nchars]\n", 103 char *temp, *prompt; local 119 prompt = "readline$ "; 128 prompt = optarg; 173 temp = readline (prompt);
|
| rl-timeout.c | 50 const char *prompt = "rl-timeout$ "; variable 64 temp = readline (prompt); 94 temp = readline (prompt); 121 and calling it from the line handler keeps one extra prompt from 144 rl_callback_handler_install (prompt, cb_linehandler); 198 rl_callback_handler_install (prompt, cb_linehandler);
|
| /src/games/backgammon/teachgammon/ |
| ttext1.c | 45 const char *const prompt = "-->"; variable
|
| /src/crypto/external/bsd/netpgp/dist/src/librsa/ |
| rsastubs.c | 42 char prompt[128]; local 45 snprintf(prompt, sizeof(prompt), "\"%s\" passphrase: ", (char *)u); 46 if ((passphrase = getpass(prompt)) == NULL) {
|
| /src/external/bsd/libfido2/dist/tools/ |
| pin.c | 24 char prompt[1024]; local 32 r = snprintf(prompt, sizeof(prompt), "Enter new PIN for %s: ", path); 33 if (r < 0 || (size_t)r >= sizeof(prompt)) { 38 if (!readpassphrase(prompt, pin1, sizeof(pin1), RPP_ECHO_OFF)) { 43 r = snprintf(prompt, sizeof(prompt), "Enter the same PIN again: "); 44 if (r < 0 || (size_t)r >= sizeof(prompt)) { 49 if (!readpassphrase(prompt, pin2, sizeof(pin2), RPP_ECHO_OFF)) { 84 char prompt[1024] local [all...] |
| /src/external/gpl3/gdb/dist/gdb/python/lib/gdb/command/ |
| prompt.py | 1 # Extended prompt. 20 import gdb.prompt namespace 24 """Set the extended prompt. 26 Usage: set extended-prompt VALUE 28 Substitutions are applied to VALUE to compute the real prompt. 32 # Add the prompt library's dynamically generated help to the 34 __doc__ = __doc__ + "\n" + gdb.prompt.prompt_help() 36 set_doc = "Set the extended prompt." 37 show_doc = "Show the extended prompt." 41 "extended-prompt", gdb.COMMAND_SUPPORT, gdb.PARAM_STRING_NOESCAP [all...] |
| /src/games/backgammon/common_source/ |
| save.c | 46 static const char prompt[] = "Enter a file name: "; variable 77 writel(prompt);
|
| /src/sbin/fsck_msdos/ |
| main.c | 151 char prompt[256]; local 163 vsnprintf(prompt, sizeof(prompt), fmt, ap); 166 printf("%s? %s\n", prompt, rdonly ? "no" : "yes"); 170 printf("%s? [yn] ", prompt);
|
| /src/usr.bin/chpass/ |
| chpass.h | 37 const char *prompt; member in struct:_entry
|
| /src/external/gpl2/texinfo/dist/info/ |
| m-x.c | 38 read_function_name (char *prompt, WINDOW *window) 60 line = info_read_completing_in_echo_area (window, prompt, array); 102 char *prompt; local 104 prompt = (char *)xmalloc (20); 113 sprintf (prompt, "%d %s ", count, keys); 115 sprintf (prompt, "%s ", keys); 118 line = read_function_name (prompt, window); 170 char prompt[80]; local 175 sprintf (prompt, _("Set screen height to (%d): "), new_height); 177 line = info_read_in_echo_area (window, prompt); [all...] |
| variables.c | 114 char prompt[100]; local 125 sprintf (prompt, _("Set %s to value (%d): "), 127 line = info_read_in_echo_area (active_window, prompt); 166 sprintf (prompt, _("Set %s to value (%s): "), 170 line = info_read_completing_in_echo_area (window, prompt, array); 206 read_variable_name (char *prompt, WINDOW *window) 217 info_read_completing_in_echo_area (window, prompt, variables);
|
| /src/external/bsd/tmux/dist/ |
| cmd-confirm-before.c | 45 .usage = "[-by] [-c confirm-key] [-p prompt] " CMD_TARGET_CLIENT_USAGE 74 const char *confirm_key, *prompt, *cmd; local 102 if ((prompt = args_get(args, 'p')) != NULL) 103 xasprintf(&new_prompt, "%s ", prompt);
|
| /src/games/mille/ |
| move.c | 372 prompt(MOVEPROMPT); 449 prompt(FILEPROMPT); 537 prompt(int promptno) function
|