HomeSort by: relevance | last modified time | path
    Searched defs:jmploc (Results 1 - 5 of 5) sorted by relevancy

  /src/bin/sh/
error.h 54 * to an inner scope, set handler to point to a jmploc structure for the
60 struct jmploc { struct
67 extern struct jmploc *handler;
121 #define setjmp(jmploc) sigsetjmp((jmploc), 0)
122 #define longjmp(jmploc, val) siglongjmp((jmploc), (val))
histedit.c 619 struct jmploc jmploc; local in function:histcmd
620 struct jmploc *volatile savehandler;
694 if (setjmp(jmploc.loc)) {
705 handler = &jmploc;
parser.c 1406 struct jmploc jmploc; local in function:parsebackq
1407 struct jmploc *const savehandler = handler;
1413 if (setjmp(jmploc.loc)) {
1430 handler = &jmploc;
2709 struct jmploc jmploc; local in function:expandonstack
2710 struct jmploc *const savehandler = handler;
2719 if (!setjmp(jmploc.loc)) {
2720 handler = &jmploc;
    [all...]
eval.c 638 struct jmploc jmploc; local in function:evalredir
639 struct jmploc * const savehandler = handler;
656 if (setjmp(jmploc.loc)) {
676 handler = &jmploc;
895 struct jmploc jmploc; local in function:evalcommand
896 struct jmploc *volatile savehandler = NULL;
1144 if (setjmp(jmploc.loc)) {
1166 handler = &jmploc;
    [all...]
var.c 398 struct jmploc jmploc; local in function:setvarsafe
399 struct jmploc * const savehandler = handler;
402 if (setjmp(jmploc.loc))
405 handler = &jmploc;
415 struct jmploc jmploc; local in function:setvareqsafe
416 struct jmploc * const savehandler = handler;
419 if (!setjmp(jmploc.loc)) {
420 handler = &jmploc;
    [all...]

Completed in 17 milliseconds