Searched defs:jbuf (Results 1 - 4 of 4) sorted by relevance

/external/libunwind/tests/
H A Dtest-setjmp.c38 static jmp_buf jbuf; variable
43 raise_longjmp (jmp_buf jbuf, int i, int n) argument
46 raise_longjmp (jbuf, i + 1, n);
48 longjmp (jbuf, n);
55 jmp_buf jbuf; local
60 if ((ret = setjmp (jbuf)))
77 raise_longjmp (jbuf, 0, i + 1);
87 raise_siglongjmp (sigjmp_buf jbuf, int i, int n) argument
90 raise_siglongjmp (jbuf, i + 1, n);
92 siglongjmp (jbuf,
98 sigjmp_buf jbuf; local
[all...]
/external/libcxxabi/src/Unwind/
H A DUnwind-sjlj.c53 void *jbuf[]; member in struct:_Unwind_FunctionContext
172 exception_object, c->jbuf[1]);
176 __builtin_longjmp(c->jbuf, 1);
248 __builtin_longjmp(c->jbuf, 1);
463 return (uintptr_t) ufc->jbuf[2];
/external/mksh/src/
H A Dmain.c113 sigjmp_buf jbuf; member in struct:__anon28020
134 sigsetjmp(bufptr->jbuf, 1);
671 if ((i = kshsetjmp(e->jbuf))) {
746 switch ((i = kshsetjmp(e->jbuf))) {
887 kshlongjmp(e->jbuf, i);
H A Dsh.h692 #define kshsetjmp(jbuf) _setjmp(jbuf)
696 #define kshsetjmp(jbuf) sigsetjmp((jbuf), 0)
715 kshjmp_buf jbuf; /* long jump back to env creator */ member in struct:env
729 /* # indicates env has valid jbuf (see unwind()) */
741 /* values for kshlongjmp(e->jbuf, i) */

Completed in 374 milliseconds