Searched refs:exec (Results 1 - 25 of 27) sorted by relevance

12

/ast/src/cmd/at/
H A Dcrontab.sh194 exec > /dev/null
221 exec=${*//\\(?)/\1}
222 exec=${exec//@([!])%/\1
224 exec=${exec//^A/\\}
225 exec=${exec//@(
229 $cron -t "cron $time" "$exec" 2> /dev/null
/ast/src/cmd/nmake/
H A DScanrules.mk171 .SCAN.exec.sh : .SCAN
177 .ATTRIBUTE.features/%.sh : .SCAN.exec.sh
H A Dobject.c1306 error(state.exec || state.mam.out ? -1 : 1, "%s: %s not found", r->name, s);
1321 error(state.exec || state.mam.out ? -1 : 1, "%s: binding changed to %s from %s", s, x->name, sn);
1323 error(state.exec || state.mam.out ? -1 : 1, "%s: out of date with %s", r->name, s);
1342 error(state.exec || state.mam.out ? -1 : 1, "%s: %sfile %s option order changed", r->name, (n & COMP_GLOBAL) ? "global " : null, s);
1349 error(state.exec || state.mam.out ? -1 : 1, "%s: %sfile %s was specified last time", r->name, (n & COMP_GLOBAL) ? "global " : null, s);
1389 error(state.exec || state.mam.out ? -1 : 1, "%s: global file %s not specified last time", r->name, p->rule->name);
1398 error(state.exec || state.mam.out ? -1 : 1, "%s: file %s not specified last time", r->name, p->rule->name);
1492 error(state.exec || state.mam.out ? -1 : 1, "%s: options changed from \"%s\" to \"%s\"", objfile, object.options, s);
1566 if (state.exec && streq(objfile, state.objectfile))
1702 if ((state.exec || !stat
[all...]
H A Dstate.c562 if (!state.exec || state.virtualdot || !state.writestate)
811 if (state.exec && state.savestate)
938 else if ((n = rstat(r->name, st, 1)) && (state.exec || state.mam.out && !state.mam.port))
991 if ((r->dynamic & D_triggered) && state.exec)
1031 if (state.exec && !state.touch)
1047 else if ((r->dynamic & D_triggered) && state.exec)
H A Dread.c167 error(state.exec || state.mam.out ? -1 : 1, "%s: base rules changed to %s", sfstrbase(internal.tmp), sfstrbase(internal.wrk));
196 error(state.exec || state.mam.out ? -1 : 1, "%s: recompiling", s);
H A Dcommand.c113 if (state.exec)
119 if (state.exec)
138 if (state.exec)
149 if (state.exec)
310 if (((job->flags & CO_ALWAYS) || state.exec && state.touch) && (mkdir(s, st.st_mode & (S_IRWXU|S_IRWXG|S_IRWXO)) || stat(s, &st)))
1369 if (state.exec && !state.touch || (a->property & P_always) && (!state.never || (flags & CO_URGENT)))
1386 if (state.exec)
H A Dmain.c191 * 0x00020000 close internal.openfd before job exec
335 * any close-on-exec fd's must have been done on our behalf
369 state.exec = 1;
724 if (state.exec && state.objectfile)
H A Doption.c97 { "exec", OPT_exec, (char*)&state.exec, 0,
1241 state.exec = 0;
1942 * otherwise re-exec forcing input files to be read
1956 error(PANIC, "makefile prerequisites cause unbounded make exec recursion");
1979 if (!state.mam.options && !state.exec)
2019 else if (!state.exec)
2060 * echo the exec action external.old style
2103 error(3, "cannot exec %s", av[0]);
H A Dmake.h269 #define CO_ALWAYS (CO_USER<<0) /* always exec */
285 #define P_always (1<<2) /* execute even if !state.exec */
777 unsigned char exec; /* execute shell actions */ member in struct:State_s
801 unsigned char never; /* really - don't exec anything */
H A Dscan.c1814 if (state.exec && !(r->property & P_dontcare))
H A Dexpand.c2488 tst = (notfile(r) || !r->time && ((state.questionable & 0x04000000) || !(r->dynamic & D_triggered)) || r->status == IGNORE || state.exec && r->status != NOTYET && (x = staterule(RULE, r, NiL, 0)) && !x->time || (r->dynamic & (D_member|D_membertoo)) == D_member) ? 0 : 'F';
H A Dmake.c1164 else if (state.exec || state.mam.statix)
H A Drule.c1046 if (!state.exec && state.mam.statix && (from->dynamic & D_alias) && (to->property & P_terminal) && from->uname && to->uname && *from->name != '/' && *to->name == '/')
/ast/src/cmd/ksh93/sh/
H A Dsuid_exec.c35 * user and group id correctly, and then exec the shell.
84 static const char badexec[] = "cannot exec";
144 goto exec;
233 exec:
360 * Finally, the clone is exec'ed. This file is unlinked by a grandchild
460 * clone is not setuid, we won't exec it as root. Also, don't
/ast/src/cmd/INIT/
H A Dpackage.sh52 exec $SHELL "$0" "$@"
559 exec=
611 exec=echo make=echo show=echo
617 never) exec=echo noexec=-N
632 show) exec=echo noexec=-n
644 '') exec 1>&2 ;;
650 exec 1>&2
1470 $exec umask 002
1471 $exec unset MAKESKIP
1473 $exec expor
[all...]
H A Dpackage.mk341 error $(--exec:?3?1?) $(I): unknown package $(I)
677 exec - ${MAMAKE} -r '*/*' ${MAMAKEARGS}
687 exec - ${MAMAKE} -r '*' ${MAMAKEARGS}
722 exec - ${MAMAKE} -r '*' ${MAMAKEARGS}
814 exec - ${MAMAKE} -r '*/*' ${MAMAKEARGS}
825 exec - ${MAMAKE} -r '*' ${MAMAKEARGS}
1007 exec - ${MAMAKE} -r '*' ${MAMAKEARGS}
H A Dmamake.c231 int exec; /* execute actions */ member in struct:__anon22
1165 report(-5, s, "exec", (unsigned long)0);
1198 x = state.exec;
2018 state.exec = !state.never;
2081 state.exec = 1;
2115 state.exec = 0;
2220 state.exec = 0;
/ast/src/cmd/ksh93/data/
H A Dbuiltins.c60 "exec", NV_BLTIN|BLT_ENV|BLT_SPC, bltin(exec),
588 "[-1c?\n@(#)$Id: exec (AT&T Research) 1999-07-10 $\n]"
590 "[+NAME?exec - execute command, open/close and duplicate file descriptors]"
598 "uses the exec mechanism internally whenever possible.]"
603 "close-on-exec flags will be set on file descriptor numbers "
/ast/lib/package/
H A Dpackage.mk341 error $(--exec:?3?1?) $(I): unknown package $(I)
677 exec - ${MAMAKE} -r '*/*' ${MAMAKEARGS}
687 exec - ${MAMAKE} -r '*' ${MAMAKEARGS}
722 exec - ${MAMAKE} -r '*' ${MAMAKEARGS}
814 exec - ${MAMAKE} -r '*/*' ${MAMAKEARGS}
825 exec - ${MAMAKE} -r '*' ${MAMAKEARGS}
1007 exec - ${MAMAKE} -r '*' ${MAMAKEARGS}
/ast/src/cmd/tw/
H A Dfind.c42 * like -exec except that command will be invoked
66 "[+EXIT STATUS?If no commands were executed (\b-exec\b, \b-xargs\b) the exit"
291 "exec", EXEC, Exec, 1, "command ... ; | command ... {} +", 0,
386 "Like \b-exec\b except a prompt is written to the terminal."
493 "Like \b-exec\b except as many file args as permitted are"
1218 error(ERROR_SYSTEM|2, "cpio: cannot exec");
/ast/src/lib/libast/regex/
H A Dreglib.h516 Exec_t exec; /* re.re_exec() args */ member in union:Rex_s::__anon302
539 Stk_pos_t stk; /* exec stack pos */
553 unsigned char stack; /* hard comp or exec */
H A Dregcomp.c2483 e->re.exec.text = (const char*)p;
2484 e->re.exec.size = env->cursor - p - 2;
2486 e->re.exec.data = 0;
2488 e->re.exec.data = (*env->disc->re_compf)(env->regex, e->re.exec.text, e->re.exec.size, env->disc);
H A Dregnexec.c1738 r = (*env->disc->re_execf)(env->regex, rex->re.exec.data, rex->re.exec.text, rex->re.exec.size, (const char*)s, env->end - s, &u, env->disc);
/ast/src/cmd/html/
H A Dhtmlrefs.c85 "[n!:exec?Enable file modification operations. \b--noexec\b lists the"
189 int exec; member in struct:State_s
922 state->exec = 1;
962 state->exec = opt_info.num;
1086 if (!state->exec)
1180 if (state->verbose || !state->exec)
1182 if (state->exec && ((ent->fts_info & FTS_D) ? rmdir : remove)(ent->fts_path))
1216 if (state->verbose || !state->exec)
1218 if (state->exec && ((ent->fts_info & FTS_D) ? rmdir : remove)(ent->fts_path))
/ast/src/cmd/kshlib/dss/
H A Ddss.c1479 goto exec;
1533 exec:

Completed in 141 milliseconds

12