Searched refs:PROMPT_MAX (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/lib/libdpv/
H A Ddialog_util.h41 #define PROMPT_MAX 16384 macro
H A Ddprompt.c52 static char dprompt[PROMPT_MAX + 1] = "";
75 static char msg[PROMPT_MAX + 1];
352 if (dprompt_pos >= (dprompt + PROMPT_MAX))
356 len = vsnprintf(dprompt_pos, (size_t)(PROMPT_MAX -
363 if ((dprompt_pos + len) < (dprompt + PROMPT_MAX))
366 dprompt_pos = dprompt + PROMPT_MAX;
605 snprintf(msg, PROMPT_MAX + 1, "%s", fp->msg);
691 if (len > PROMPT_MAX)
693 "(%zu > %i)", __func__, len, PROMPT_MAX);
708 return (snprintf(str, PROMPT_MAX, "
[all...]
H A Ddpv.c141 char init_prompt[PROMPT_MAX + 1] = "";

Completed in 55 milliseconds