Searched refs:shellparam (Results 1 – 5 of 5) sorted by relevance
168 shellparam.p = xargv; in procargs()169 shellparam.optind = 1; in procargs()170 shellparam.optoff = -1; in procargs()173 shellparam.nparam++; in procargs()315 freeparam(&shellparam); in setparam()316 shellparam.malloc = 1; in setparam()319 shellparam.optind = 1; in setparam()320 shellparam.optoff = -1; in setparam()363 ap2 = shellparam.p; in shiftcmd()365 shellparam.optind = 1; in shiftcmd()[all …]
86 int argc = 1 + shellparam.nparam; in process_subshell()90 for (arg_ndx = 0; arg_ndx < shellparam.nparam; arg_ndx++) { in process_subshell()91 argv[arg_ndx + 1] = shellparam.p[arg_ndx]; in process_subshell()
74 extern struct shparam shellparam; /* $@ */
970 saveparam = shellparam; in evalfun()979 shellparam.malloc = 0; in evalfun()984 shellparam.nparam = argc - 1; in evalfun()985 shellparam.p = argv + 1; in evalfun()986 shellparam.optind = 1; in evalfun()987 shellparam.optoff = -1; in evalfun()996 freeparam(&shellparam); in evalfun()997 shellparam = saveparam; in evalfun()
735 easy = (!quoted || (*var == '@' && shellparam.nparam)); in evalvar()916 num = shellparam.nparam; in varvalue()946 if (!(ap = shellparam.p)) in varvalue()968 if (num < 0 || num > shellparam.nparam) in varvalue()970 p = num ? shellparam.p[num - 1] : arg0; in varvalue()
Completed in 11 milliseconds