HomeSort by relevance Sort by last modified time
    Searched refs:jmp_buf (Results 1 - 25 of 223) sorted by null

1 2 3 4 5 6 7 8 9

  /external/clang/test/CodeGen/
ms-setjmp.c 5 typedef char jmp_buf[1]; typedef
8 int _setjmp(jmp_buf env);
9 int _setjmpex(jmp_buf env);
12 jmp_buf jb;
  /external/clang/test/Headers/Inputs/include/
setjmp.h 6 } jmp_buf; typedef in typeref:struct:__anon16284
  /external/clang/test/Sema/
builtin-longjmp.c 16 typedef void *jmp_buf; typedef
17 jmp_buf buf;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
pyfpe.c 12 jmp_buf PyFPE_jbuf;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
pyfpe.c 12 jmp_buf PyFPE_jbuf;
  /external/python/cpython2/Python/
pyfpe.c 12 jmp_buf PyFPE_jbuf;
  /external/python/cpython3/Python/
pyfpe.c 12 jmp_buf PyFPE_jbuf;
  /bionic/tests/headers/posix/
setjmp_h.c 34 TYPE(jmp_buf);
37 FUNCTION(_longjmp, void (*f)(jmp_buf, int));
38 FUNCTION(longjmp, void (*f)(jmp_buf, int));
41 FUNCTION(_setjmp, int (*f)(jmp_buf));
42 FUNCTION(setjmp, int (*f)(jmp_buf));
  /device/linaro/bootloader/edk2/StdLib/Include/
setjmp.h 3 and the type jmp_buf, for bypassing the normal function call and return discipline.
19 /** jmp_buf is an array type suitable for holding the information needed to
27 typedef BASE_LIBRARY_JUMP_BUFFER jmp_buf[1]; typedef
29 /** The setjmp macro saves its calling environment in its jmp_buf argument for
37 @param[in,out] env A jmp_buf type object into which
49 the corresponding jmp_buf argument. If there has been no such invocation,
63 extern void longjmp(jmp_buf env, int val);
  /external/compiler-rt/test/tsan/
longjmp4.cc 12 void bar(jmp_buf env) {
14 jmp_buf env2;
15 memcpy(env2, env, sizeof(jmp_buf));
20 void foo(jmp_buf env) {
34 jmp_buf env;
longjmp.cc 10 int foo(jmp_buf env) {
15 jmp_buf env;
longjmp3.cc 11 void bar(jmp_buf env) {
17 void foo(jmp_buf env) {
31 jmp_buf env;
  /external/syslinux/com32/include/
setjmp.h 20 __extern int setjmp(jmp_buf);
21 __extern __noreturn longjmp(jmp_buf, int);
23 typedef jmp_buf sigjmp_buf;
  /device/linaro/bootloader/edk2/StdLib/LibC/Main/
longjmp.c 17 void longjmp(jmp_buf env, int val)
  /external/syslinux/com32/include/klibc/
archsetjmp.h 17 typedef struct __jmp_buf jmp_buf[1]; typedef in typeref:struct:__jmp_buf
  /external/syslinux/com32/include/klibc/i386/
archsetjmp.h 17 typedef struct __jmp_buf jmp_buf[1]; typedef in typeref:struct:__jmp_buf
  /external/syslinux/com32/include/klibc/x86_64/
archsetjmp.h 19 typedef struct __jmp_buf jmp_buf[1]; typedef in typeref:struct:__jmp_buf
  /packages/apps/Gallery2/jni_jpegstream/src/
jerr_hook.h 38 jmp_buf setjmp_buf;
  /bionic/libc/include/
setjmp.h 62 typedef long jmp_buf[_JBLEN]; typedef
68 int _setjmp(jmp_buf __env);
69 void _longjmp(jmp_buf __env, int __value);
71 int setjmp(jmp_buf __env);
72 void longjmp(jmp_buf __env, int __value);
  /external/skia/src/codec/
SkJpegPriv.h 43 operator jmp_buf&() { return fJmpBuf; }
47 jmp_buf fJmpBuf;
50 SkSTArray<4, jmp_buf*> fJmpBufStack;
  /external/skqp/src/codec/
SkJpegPriv.h 43 operator jmp_buf&() { return fJmpBuf; }
47 jmp_buf fJmpBuf;
50 SkSTArray<4, jmp_buf*> fJmpBufStack;
  /external/libcxx/test/std/depr/depr.c.headers/
setjmp_h.pass.cpp 21 jmp_buf jb;
  /external/libcxx/test/std/language.support/support.runtime/
csetjmp.pass.cpp 21 std::jmp_buf jb;
  /external/libunwind/src/setjmp/
setjmp.c 40 jmp_buf env;
  /external/syslinux/gpxe/src/arch/i386/include/
setjmp.h 17 } jmp_buf[1]; typedef in typeref:struct:__anon37788
21 jmp_buf env;
26 extern int __asmcall setjmp ( jmp_buf env );
27 extern void __asmcall longjmp ( jmp_buf env, int val );

Completed in 784 milliseconds

1 2 3 4 5 6 7 8 9