Searched refs:nparam (Results 1 - 4 of 4) sorted by relevance

/system/core/sh/
H A Doptions.c127 /* assert(shellparam.malloc == 0 && shellparam.nparam == 0); */
129 shellparam.nparam++;
276 int nparam; local
278 for (nparam = 0 ; argv[nparam] ; nparam++);
279 ap = newparam = ckmalloc((nparam + 1) * sizeof *ap);
286 shellparam.nparam = nparam;
323 if (n > shellparam.nparam)
[all...]
H A Doptions.h38 int nparam; /* # of positional parameters (without $0) */ member in struct:shparam
H A Dexpand.c683 (*var == '@' && shellparam.nparam != 1));
802 if (num > shellparam.nparam)
855 num = shellparam.nparam;
896 if (num > 0 && num <= shellparam.nparam) {
H A Deval.c930 shellparam.nparam = argc - 1;

Completed in 26 milliseconds