Lines Matching defs:expansion
3 * program when the expansion would overflow the output buffer. The result
4 * of %<char> expansion may be passed on to a shell process. For this
29 /* percent_x - do %<char> expansion, abort if result buffer is too small */
39 char *expansion;
56 expansion =
69 for (cp = expansion; *(cp += strspn(cp, ok_chars)); /* */ )
71 expansion_len = cp - expansion;
73 expansion = str++;
77 tcpd_warn("percent_x: expansion too long: %.30s...", result);
81 memcpy(bp, expansion, expansion_len);