HomeSort by relevance Sort by last modified time
    Searched refs:nclist (Results 1 - 5 of 5) sorted by null

  /system/core/sh/
nodes.h 18 #define NCLIST 13
86 struct nclist { struct
143 struct nclist nclist; member in union:node
nodes.c 72 SHELL_ALIGN(sizeof (struct nclist)),
159 case NCLIST:
160 calcsize(n->nclist.body);
161 calcsize(n->nclist.pattern);
162 calcsize(n->nclist.next);
257 case NCLIST:
258 new->nclist.body = copynode(n->nclist.body);
259 new->nclist.pattern = copynode(n->nclist.pattern)
    [all...]
parser.c 424 *cpp = cp = (union node *)stalloc(sizeof (struct nclist));
425 cp->type = NCLIST;
426 app = &cp->nclist.pattern;
442 cp->nclist.body = list(0);
455 cpp = &cp->nclist.next;
    [all...]
eval.c 401 for (cp = n->ncase.cases ; cp && evalskip == 0 ; cp = cp->nclist.next) {
402 for (patp = cp->nclist.pattern ; patp ; patp = patp->narg.next) {
405 evaltree(cp->nclist.body, flags);
jobs.c 1321 for (np = n->ncase.cases; np; np = np->nclist.next) {
1322 cmdtxt(np->nclist.pattern);
1324 cmdtxt(np->nclist.body);

Completed in 45 milliseconds