Searched refs:arglist (Results 1 - 3 of 3) sorted by relevance
/system/core/sh/ |
H A D | expand.h | 43 struct arglist { struct 61 void expandarg(union node *, struct arglist *, int);
|
H A D | eval.c | 351 struct arglist arglist; local 358 arglist.lastp = &arglist.list; 360 expandarg(argp, &arglist, EXP_FULL | EXP_TILDE); 364 *arglist.lastp = NULL; 367 for (sp = arglist.list ; sp ; sp = sp->next) { 394 struct arglist arglist; local 399 arglist 678 struct arglist arglist; local [all...] |
H A D | expand.c | 92 struct arglist exparg; /* holds expanded arg list */ 103 STATIC void ifsbreakup(char *, struct arglist *); 121 expandarg(arg, (struct arglist *)NULL, 0); 128 * placing the resulting list of arguments in arglist. If EXP_FULL is true, 129 * perform splitting and file name expansion. When arglist is NULL, perform 134 expandarg(union node *arg, struct arglist *arglist, int flag) argument 144 if (arglist == NULL) { 169 *arglist->lastp = exparg.list; 170 arglist 944 ifsbreakup(char *string, struct arglist *arglist) argument [all...] |
Completed in 723 milliseconds