HomeSort by relevance Sort by last modified time
    Searched refs:longjmp (Results 51 - 75 of 108) sorted by null

1 23 4 5

  /external/freetype/include/freetype/config/
ftstdlib.h 160 #define ft_longjmp longjmp
  /bionic/libc/arch-sh/bionic/
setjmp.S 42 * C library -- setjmp, longjmp
44 * longjmp(a,v)
110 ENTRY(longjmp) function
167 SET_ENTRY_SIZE(longjmp)
  /system/extras/ext4_utils/
ext4_utils.h 53 #define error(fmt, args...) do { fprintf(stderr, "error: %s: " fmt "\n", __func__, ## args); if (!force) longjmp(setjmp_env, EXIT_FAILURE); } while (0)
55 #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);
  /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/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/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/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/zlib/contrib/puff/
puff.c 40 * - Add input size and checking, using longjmp() to
74 #include <setjmp.h> /* for setjmp(), longjmp(), and jmp_buf */
126 if (s->incnt == s->inlen) longjmp(s->env, 1); /* out of input */
287 if (s->incnt == s->inlen) longjmp(s->env, 1); /* out of input */
    [all...]
  /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);
  /external/llvm/lib/Support/
CrashRecoveryContext.cpp 52 longjmp(JumpBuffer, 1);
166 // longjmp, which means the HandleCrash function never returns.
167 llvm_unreachable("Handled the crash, should have longjmp'ed out of here");
  /external/qemu/distrib/sdl-1.2.12/src/cpuinfo/
SDL_cpuinfo.c 52 longjmp(jmpbuf, 1);
  /external/skia/src/images/
SkJpegUtility.cpp 213 longjmp(error->fJmpBuf, -1);
  /external/valgrind/main/none/tests/ppc32/
twi.c 9 static void handler_sigtrap ( int x ) { longjmp(env_sigtrap,1); }
  /external/valgrind/main/none/tests/ppc64/
twi_tdi.c 9 static void handler_sigtrap ( int x ) { longjmp(env_sigtrap,1); }
  /system/core/sh/
error.c 79 * just do a longjmp to the exception handler. The type of exception is
89 longjmp(handler->loc, 1);
  /system/extras/tests/bionic/libc/other/
test_jpeg.c 132 longjmp(error->jumper, -1);
  /external/e2fsprogs/e2fsck/
util.c 58 longjmp(ctx->abort_loc, 1);
170 longjmp(e2fsck_global_ctx->abort_loc, 1);

Completed in 467 milliseconds

1 23 4 5