• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/shell/

Lines Matching defs:on

38  *      define DEBUG=1 to compile in debugging ('set -o debug' to turn on)
39 * define DEBUG=2 to compile in and turn on debugging.
41 * When debugging is on, debugging info will be written to ./trace and
66 #error "Do not even bother, ash will not run on uClinux"
139 /* shell level: 0 for the main shell, 1 for its children, and so on */
159 * exception handlers, the user should save the value of handler on entry
161 * inner scope, and restore handler on exit from the scope.
185 * S_HARD_IGN indicates that the signal was ignored on entry to the shell,
958 struct strpush *prev; /* preceding string on stack */
968 struct parsefile *prev; /* preceding file on stack */
1067 * pointer to a static buffer that will be overwritten on the next call.
1090 * on many machines. */
1242 * When the parser reads in a string, it wants to stick the string on the
1245 * of space on top of the stack and stackblocklen returns the length of
1439 * Convert a string of digits to an integer, printing an error message on
1452 * The return string is allocated on the stack.
1566 #define VSTACK 0x10 /* text is allocated on the stack */
1570 #define VNOSAVE 0x100 /* when text is on the heap before setvareq */
1824 * PS1 depends on uid
1980 * Safe version of setvar, returns 1 on success 0 on failure.
2068 listvars(int on, int off, char ***end)
2077 mask = on | off;
2080 if ((vp->flags & mask) == on) {
3144 #define setjobctl(on) do {} while (0)
3247 /* pgrp of shell on invocation */
3429 * Turn job control on and off.
3432 * pointer, which is true on Berkeley systems but not System V. Since
3438 setjobctl(int on)
3443 if (on == jobctl || rootshell == 0)
3445 if (on) {
3463 mflag = on = 0;
3494 jobctl = on;
4337 * process group even if job control is on.
4346 * Clear traps on a fork.
4495 * exit on interrupt; unless these processes terminate themselves by
4590 * Note that we don't turn on O_EXCL unless the stat failed -- if the
4866 * Undo all redirections. Called on error or interrupt.
5074 * Put a string on the stack.
6304 * Perform variable substitution and command substitution on an argument,
6433 * on each invocation.
6646 * Delete the command entry returned on the last lookup.
7310 /* reasons for skipping commands (see comment on breakcmd routine) */
7723 setinteractive(int on)
7727 if (++on == is_interactive)
7729 is_interactive = on;
7752 #define setvimode(on) do { \
7753 if (on) line_input_state->flags |= VI_MODE; \
7757 #define setvimode(on) viflag = 0 /* forcibly keep the option off */
7962 iflag = 0; /* exit on error */
8568 * 1) If a string was pushed back on the input, pop it;
8999 optlist[i] ? "on" : "off");
9105 showvars(const char *sep_prefix, int on, int off)
9110 ep = listvars(on, off, &epend);
9403 pungetc(); /* push back EOF on input */
10289 * characters on the top of the stack which must be preserved.
10473 * on which the token starts.
10709 * Read and parse a command. Returns NEOF on end of file. (NULL is a
10844 * loop; it turns on prompting if the shell is interactive.
11932 * for a detailed explanation of the infix-to-postfix algorithm on which
12157 /* "applying" a token means performing it on the top elements on the integer
12388 * input stream. If there are still tokens on the operator stack, they
12390 * result on the integer stack */
12487 /* We don't want a unary operator to cause recursive descent on the
12491 /* But for binary operators, "apply" everything on the operator
12565 * under Midnight Commander, on exit from dash MC is backgrounded) */