Symbol: prompt_string
lib/libcrypto/evp/evp_key.c
114
if (prompt == NULL && prompt_string[0] != '\0')
lib/libcrypto/evp/evp_key.c
115
prompt = prompt_string;
lib/libcrypto/evp/evp_key.c
71
static char prompt_string[80];
lib/libcrypto/evp/evp_key.c
77
prompt_string[0] = '\0';
lib/libcrypto/evp/evp_key.c
79
strlcpy(prompt_string, prompt, sizeof(prompt_string));
lib/libcrypto/evp/evp_key.c
86
if (prompt_string[0] == '\0')
lib/libcrypto/evp/evp_key.c
89
return prompt_string;
usr.bin/less/command.c
669
p = prompt_string();
usr.bin/less/funcs.h
249
char *prompt_string(void);
usr.bin/tmux/cmd-command-prompt.c
93
if (tc->prompt_string != NULL)
usr.bin/tmux/screen-redraw.c
588
else if (c->prompt_string != NULL)
usr.bin/tmux/screen-redraw.c
626
if (c->message_string != NULL || c->prompt_string != NULL)
usr.bin/tmux/server-client.c
1439
if (c->prompt_string != NULL) {
usr.bin/tmux/server-client.c
1733
} else if (c->prompt_string == NULL)
usr.bin/tmux/server-client.c
1749
if (c->prompt_string != NULL) {
usr.bin/tmux/server-client.c
1800
if (c->overlay_draw == NULL && c->prompt_string != NULL)
usr.bin/tmux/server-client.c
493
free(c->prompt_string);
usr.bin/tmux/status.c
191
if (c->message_string == NULL && c->prompt_string == NULL)
usr.bin/tmux/status.c
1939
offset += utf8_cstrwidth(c->prompt_string);
usr.bin/tmux/status.c
2037
offset += utf8_cstrwidth(c->prompt_string);
usr.bin/tmux/status.c
521
if (c->prompt_string == NULL)
usr.bin/tmux/status.c
674
if (c->prompt_string != NULL) {
usr.bin/tmux/status.c
705
c->prompt_string = xstrdup (msg);
usr.bin/tmux/status.c
746
if (c->prompt_string == NULL)
usr.bin/tmux/status.c
758
free(c->prompt_string);
usr.bin/tmux/status.c
759
c->prompt_string = NULL;
usr.bin/tmux/status.c
779
free(c->prompt_string);
usr.bin/tmux/status.c
780
c->prompt_string = xstrdup(msg);
usr.bin/tmux/status.c
888
prompt = format_expand_time(c->prompt_formats, c->prompt_string);