• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asus-wl-520gu-7.0.1.45/src/router/busybox/

Lines Matching defs:op

77 #define	NOBLOCK	((struct op *)NULL)
86 struct op {
90 struct op *left;
91 struct op *right;
136 static struct op *outtree; /* result from parser */
281 struct op *o;
306 static struct op *pipeline(int cf );
307 static struct op *andor(void);
308 static struct op *c_list(void);
311 static struct op *simple(void);
312 static struct op *nested(int type, int mark );
313 static struct op *command(int cf );
314 static struct op *dogroup(int onlydone );
315 static struct op *thenpart(void);
316 static struct op *elsepart(void);
317 static struct op *caselist(void);
318 static struct op *casepart(void);
321 static struct op *list(struct op *t1, struct op *t2 );
322 static struct op *block(int type, struct op *t1, struct op *t2, char **wp );
323 static struct op *newtp(void);
324 static struct op *namelist(struct op *t );
371 static int execute (struct op *t, int *pin, int *pout, int act );
493 static int forkexec (struct op *t, int *pin, int *pout, int act, char **wp, int *pforked );
496 static struct op **find1case (struct op *t, char *w );
497 static struct op *findcase (struct op *t, char *w );
501 static int dochdir(struct op *t );
502 static int doshift(struct op *t );
503 static int dologin(struct op *t );
504 static int doumask(struct op *t );
505 static int doexec(struct op *t );
506 static int dodot(struct op *t );
507 static int dowait(struct op *t );
508 static int doread(struct op *t );
509 static int doeval(struct op *t );
510 static int dotrap(struct op *t );
514 static int dobreak(struct op *t );
515 static int docontinue(struct op *t );
517 static int doexit(struct op *t );
518 static int doexport(struct op *t );
519 static int doreadonly(struct op *t );
522 static int doset(struct op *t );
633 static struct op *outtree; /* result from parser */
1603 static struct op *
1607 register struct op *t, *p;
1626 static struct op *
1629 register struct op *t, *p;
1644 static struct op *
1647 register struct op *t, *p;
1697 static struct op *
1700 register struct op *t;
1725 static struct op *
1729 register struct op *t;
1738 static struct op *
1742 register struct op *t;
1757 return((struct op *)NULL);
1827 static struct op *
1832 register struct op *mylist;
1836 return((struct op *)NULL);
1844 static struct op *
1848 register struct op *t;
1852 return((struct op *)NULL);
1863 static struct op *
1867 register struct op *t;
1884 return((struct op *)NULL);
1888 static struct op *
1891 register struct op *t;
1899 static struct op *
1902 register struct op *t;
1950 static struct op *
1952 register struct op *t1, *t2;
1961 static struct op *
1964 struct op *t1, *t2;
1967 register struct op *t;
1989 static struct op *
1992 register struct op *t;
1994 t = (struct op *)tree(sizeof(*t));
2004 static struct op *
2006 register struct op *t;
2298 register struct op *t;
2302 register struct op *t1;
2474 forkexec( register struct op *t, int *pin, int *pout, int act, char **wp, int *pforked)
2711 static struct op **
2713 struct op *t;
2716 register struct op *t1;
2717 struct op **tp;
2721 return((struct op **)NULL);
2731 return((struct op **)NULL);
2734 static struct op *
2736 struct op *t;
2739 register struct op **tp;
2741 return((tp = find1case(t, w)) != NULL? *tp: (struct op *)NULL);
2902 struct op *otree;
2995 register struct op *t;
3012 register struct op *t;
3033 struct op *t;
3048 register struct op *t;
3069 register struct op *t;
3091 struct op *t;
3121 struct op *t;
3138 struct op *t;
3164 register struct op *t;
3171 register struct op *t;
3259 struct op *t;
3266 struct op *t;
3298 struct op *t;
3312 struct op *t;
3320 struct op *t;
3360 register struct op *t;
3969 register char *op, *xp;
3971 p = op = space((int)(end1-start1)+strlen(middle)+strlen(end)+2);
3973 *op++ = *xp++;
3974 for (xp = middle; (*op++ = *xp++) != '\0';)
3976 op--;
3977 for (xp = end; (*op++ = *xp++) != '\0';)