/system/core/sh/ |
error.h | 116 #define longjmp(jmploc, val) _longjmp(jmploc, val) macro
|
/system/extras/tests/bionic/libc/glibc/assert/ |
test-assert.c | 20 longjmp (rec, 1); /* recover control */
|
/external/clang/test/Sema/ |
return.c | 204 longjmp(test30_j, 1); 207 longjmp(test30_j, 2);
|
/bionic/libc/arch-arm/bionic/ |
setjmp.S | 42 * C library -- setjmp, longjmp 44 * longjmp(a,v) 88 ENTRY(longjmp) function 142 END(longjmp)
|
/bionic/libc/arch-x86/bionic/ |
setjmp.S | 37 * C library -- setjmp, longjmp 39 * longjmp(a,v) 69 ENTRY(longjmp) function
|
/external/freetype/include/freetype/config/ |
ftstdlib.h | 161 #define ft_longjmp longjmp
|
/system/extras/ext4_utils/ |
ext4_utils.h | 59 #define error(fmt, args...) do { fprintf(stderr, "error: %s: " fmt "\n", __func__, ## args); if (!force) longjmp(setjmp_env, EXIT_FAILURE); } while (0) 61 #define critical_error(fmt, args...) do { fprintf(stderr, "critical error: %s: " fmt "\n", __func__, ## args); longjmp(setjmp_env, EXIT_FAILURE); } while (0)
|
/external/srec/srec/include/ |
c42mul.h | 46 #define RETURN_ERROR(CODE) (rec->except_enabled ? longjmp(rec->except_buf, (CODE)) : SERVICE_ERROR(CODE))
|
/external/webkit/Source/WebCore/platform/image-decoders/png/ |
PNGImageDecoder.cpp | 63 longjmp(JMPBUF(png), 1); 249 longjmp(JMPBUF(png), 1); 257 // in this case as soon as we longjmp(). 262 longjmp(JMPBUF(png), 1); 341 longjmp(JMPBUF(m_reader->pngPtr()), 1);
|
/frameworks/av/cmds/stagefright/ |
jpeg.cpp | 37 longjmp(sf_err->longjmp_buffer, 0);
|
/external/jpeg/ |
example.c | 239 * We use C's setjmp/longjmp facility to return control. This means that the 242 * longjmp(). But we need to make the setjmp buffer accessible to the 273 longjmp(myerr->setjmp_buffer, 1);
|
/external/qemu/distrib/jpeg-6b/ |
example.c | 239 * We use C's setjmp/longjmp facility to return control. This means that the 242 * longjmp(). But we need to make the setjmp buffer accessible to the 273 longjmp(myerr->setjmp_buffer, 1);
|
/external/webkit/Source/WebCore/platform/image-encoders/ |
JPEGImageEncoder.cpp | 83 longjmp(err->m_setjmpBuffer, -1);
|
/external/libpng/ |
pngerror.c | 293 longjmp(jmpbuf,1); 296 longjmp(png_ptr->jmpbuf, 1); 358 * method used in the default routine calls longjmp(png_ptr->jmpbuf, 1)
|
/external/qemu/distrib/libpng-1.2.19/ |
pngerror.c | 231 longjmp(jmpbuf, 1); 234 longjmp(png_ptr->jmpbuf, 1); 288 * method used in the default routine calls longjmp(png_ptr->jmpbuf, 1)
|
/external/zlib/contrib/blast/ |
blast.c | 27 #include <setjmp.h> /* for setjmp(), longjmp(), and jmp_buf */ 75 if (s->left == 0) longjmp(s->env, 1); /* out of input */ 159 if (s->left == 0) longjmp(s->env, 1); /* out of input */ 396 if (setjmp(s.env) != 0) /* if came back here via longjmp(), */
|
/external/skia/third_party/glu/libtess/ |
tess.c | 530 if ( !EmptyCache( tess ) ) longjmp(tess->env,1); /* could've used a label*/ 545 longjmp(tess->env,1); /* could've used a label */ 561 if (rc == 0) longjmp(tess->env,1); /* could've used a label */
|
/external/e2fsprogs/lib/ss/ |
listen.c | 45 longjmp(listen_jmpb, 1);
|
/external/expat/tests/ |
minicheck.c | 167 longjmp(env, 1);
|
/external/webkit/Source/WebCore/platform/image-encoders/skia/ |
JPEGImageEncoder.cpp | 80 longjmp(*jumpBufferPtr, -1);
|
/external/zlib/contrib/puff/ |
puff.c | 40 * - Add input size and checking, using longjmp() to 81 #include <setjmp.h> /* for setjmp(), longjmp(), and jmp_buf */ 133 longjmp(s->env, 1); /* out of input */ 298 longjmp(s->env, 1); /* out of input */ [all...] |
/external/opencv/otherlibs/highgui/ |
bitstrm.cpp | 136 longjmp( m_jmp_buf, RBS_THROW_EOS ); 464 longjmp( m_jmp_buf, RBS_THROW_FORB ); 566 longjmp( m_jmp_buf, RBS_THROW_FORB );
|
/external/compiler-rt/lib/asan/ |
asan_interceptors.cc | 58 void longjmp(void* env, int value); 362 INTERCEPTOR(void, longjmp, void *env, int val) { 364 REAL(longjmp)(env, val); 814 CHECK(INTERCEPT_FUNCTION(longjmp)); 824 // On Darwin siglongjmp tailcalls longjmp, so we don't want to intercept it
|
/external/libpng/contrib/gregbook/ |
writepng.c | 106 * but compatible error handlers must either use longjmp() themselves 255 /* returns 0 for success, 2 for libpng (longjmp) problem */ 375 * setjmp() and longjmp() are called from the same code, they are 391 longjmp(mainprog_ptr->jmpbuf, 1);
|
/external/libvpx/vpx/internal/ |
vpx_codec_internal.h | 469 longjmp(info->jmp, info->error_code);
|