Lines Matching refs:expansion
10 * program when the expansion would overflow the output buffer. The result
11 * of %<char> expansion may be passed on to a shell process. For this
38 /* percent_x - do %<char> expansion, abort if result buffer is too small */
48 char *expansion;
65 expansion =
78 for (cp = expansion; *(cp += strspn(cp, ok_chars)); /* */ )
80 expansion_len = cp - expansion;
82 expansion = str++;
86 tcpd_warn("percent_x: expansion too long: %.30s...", result);
90 memcpy(bp, expansion, expansion_len);