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

Lines Matching refs:rcode

735 	int rcode = EXIT_SUCCESS;
742 rcode = last_return_code;
744 return rcode;
1318 int i, rcode;
1347 rcode = x->function(argv);
1349 _exit(rcode);
1382 int rcode;
1394 rcode = run_list_real(child->group);
1397 _exit(rcode);
1515 int rcode = 0;
1560 rcode = WEXITSTATUS(status);
1573 return rcode;
1622 return rcode;
1629 int rcode = checkjobs(fg_pipe);
1635 return rcode;
1668 int rcode;
1689 rcode = run_list_real(child->group);
1691 debug_printf_exec("run_pipe_real return %d\n", rcode);
1692 return rcode; // do we need to add '... & 0xff' ?
1727 rcode = x->function(argv_expanded) & 0xff;
1730 debug_printf_exec("run_pipe_real return %d\n", rcode);
1731 return rcode;
1744 rcode = run_nofork_applet_prime(&nofork_save, a, argv_expanded) & 0xff;
1747 debug_printf_exec("run_pipe_real return %d\n", rcode);
1748 return rcode;
1918 int rcode = 0; /* probably for gcc only */
1981 rcode = 0;
2070 rcode = run_pipe_real(pi);
2071 if (rcode != -1) {
2072 /* We only ran a builtin: rcode was set by the return value
2083 rcode = EXIT_SUCCESS;
2089 rcode = checkjobs_and_fg_shell(pi);
2094 rcode = checkjobs(pi);
2096 debug_printf_exec(": checkjobs returned %d\n", rcode);
2098 debug_printf_exec(": setting last_return_code=%d\n", rcode);
2099 last_return_code = rcode;
2103 next_if_code = rcode; /* can be overwritten a number of times */
2111 if ((rcode == EXIT_SUCCESS && pi->followup == PIPE_OR)
2112 || (rcode != EXIT_SUCCESS && pi->followup == PIPE_AND)
2123 exit(rcode);
2131 debug_printf_exec("run_list_real lvl %d return %d\n", run_list_level + 1, rcode);
2132 return rcode;
2189 int rcode = 0; /* if list has no members */
2194 rcode = free_pipe(pi, indent);
2200 return rcode;
2206 int rcode = 0;
2210 rcode = run_list_real(pi);
2216 debug_printf_exec("run_list return %d\n", rcode);
2217 return rcode;
3181 int rcode;
3198 rcode = parse_stream(dest, &sub, input, endch);
3204 debug_printf_parse("parse_group return %d\n", rcode);
3205 return rcode;
3516 int rcode;
3529 rcode = parse_stream(&temp, &ctx, inp, ";\n");
3530 if (rcode != 1 && ctx.old_flag != 0) {
3533 if (rcode != 1 && ctx.old_flag == 0) {
3550 } while (rcode != -1 && !(parse_flag & PARSEFLAG_EXIT_FROM_LOOP)); /* loop on syntax errors, return on EOF */
3563 int rcode;
3566 rcode = parse_and_run_stream(&input, PARSEFLAG_SEMICOLON);
3567 return rcode;