/src/lib/libedit/TEST/ |
fuzz1.c | 39 char *expansion; local in function:LLVMFuzzerTestOneInput 45 result = history_expand(s, &expansion); 50 add_history(expansion); 52 free(expansion);
|
/src/lib/libwrap/ |
percent_x.c | 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; local in function:percent_x 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) [all...] |
/src/usr.sbin/tcpdchk/ |
percent_x.c | 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; local in function:percent_x 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) [all...] |
/src/usr.sbin/rpc.pcnfsd/ |
pcnfsd_print.c | 1290 static char expansion[512]; local in function:expand_alias 1294 strlcpy(expansion, alias[i].a_command, 1295 sizeof(expansion)); 1296 substitute(expansion, "$FILE", file); 1297 substitute(expansion, "$USER", user); 1298 substitute(expansion, "$HOST", host); 1299 return (expansion);
|
/src/sys/arch/evbarm/gumstix/ |
gumstix_machdep.c | 514 static const char expansion_name[] = "expansion="; 538 /* Configure expansion */ 590 char expansion[256], c; local in function:process_kernel_args_liner 597 expansion[i++] = c; 598 } while (c != '\0' && i < sizeof(expansion)); 599 gxio_config_expansion(expansion);
|