tmpsap 77 kern/exec_script.c char **shellargp = NULL, **tmpsap;
tmpsap 209 kern/exec_script.c tmpsap = shellargp;
tmpsap 210 kern/exec_script.c *tmpsap = malloc(shellnamelen + 1, M_EXEC, M_WAITOK);
tmpsap 211 kern/exec_script.c strlcpy(*tmpsap++, shellname, shellnamelen + 1);
tmpsap 213 kern/exec_script.c *tmpsap = malloc(shellarglen + 1, M_EXEC, M_WAITOK);
tmpsap 214 kern/exec_script.c strlcpy(*tmpsap++, shellarg, shellarglen + 1);
tmpsap 216 kern/exec_script.c *tmpsap = malloc(MAXPATHLEN, M_EXEC, M_WAITOK);
tmpsap 223 kern/exec_script.c error = systrace_scriptname(p, *tmpsap);
tmpsap 225 kern/exec_script.c tmpsap++;
tmpsap 232 kern/exec_script.c error = copystr(epp->ep_name, *tmpsap++,
tmpsap 235 kern/exec_script.c error = copyinstr(epp->ep_name, *tmpsap++, MAXPATHLEN,
tmpsap 238 kern/exec_script.c error = copyinstr(epp->ep_name, *tmpsap++, MAXPATHLEN,
tmpsap 247 kern/exec_script.c snprintf(*tmpsap++, MAXPATHLEN, "/dev/fd/%d", epp->ep_fd);
tmpsap 249 kern/exec_script.c *tmpsap = NULL;
tmpsap 307 kern/exec_script.c if ((tmpsap = shellargp) != NULL) {
tmpsap 308 kern/exec_script.c while (*tmpsap != NULL) {
tmpsap 309 kern/exec_script.c free(*tmpsap, M_EXEC);
tmpsap 310 kern/exec_script.c tmpsap++;