Lines Matching defs:expansion
5 * program when the expansion would overflow the output buffer. The result
6 * of %<char> expansion may be passed on to a shell process. For this
36 /* percent_x - do %<char> expansion, abort if result buffer is too small */
44 char *expansion;
61 expansion =
75 for (cp = expansion; *(cp += strspn(cp, ok_chars)); /* */ )
77 expansion_len = cp - expansion;
79 expansion = str++;
83 tcpd_warn("percent_x: expansion too long: %.30s...", result);
87 memcpy(bp, expansion, expansion_len);