HomeSort by relevance Sort by last modified time
    Searched refs:longjmp (Results 226 - 250 of 304) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/gallium/auxiliary/util/
u_cpu_detect.c 101 longjmp(__lv_powerpc_jmpbuf, 1);
  /external/selinux/libsepol/cil/test/unit/
CuTest.c 180 if (tc->jumpBuf != 0) longjmp(*(tc->jumpBuf), 0);
  /external/skia/src/images/
SkPngEncoder.cpp 35 longjmp(png_jmpbuf(png_ptr), 1);
  /external/valgrind/none/tests/ppc32/
tw.c 9 static void handler_sigtrap ( int x ) { longjmp(env_sigtrap,1); }
  /external/valgrind/none/tests/ppc64/
tw_td.c 9 static void handler_sigtrap ( int x ) { longjmp(env_sigtrap,1); }
  /packages/apps/Camera2/jni/
jpegutil.cpp 146 // libjpeg requires the use of setjmp/longjmp to recover from errors. Since
148 // delete. See POSIX documentation for longjmp() for details on why the
171 // to return control via setjmp/longjmp.
178 longjmp(myerr->setjmp_buffer, 1);
186 // longjmp()).
  /external/compiler-rt/lib/asan/
asan_interceptors.cc 365 INTERCEPTOR(void, longjmp, void *env, int val) {
367 REAL(longjmp)(env, val);
759 ASAN_INTERCEPT_FUNC(longjmp);
  /external/skia/src/codec/
SkPngCodec.cpp 39 // When setjmp is first called, it returns 0, meaning longjmp was not called.
43 // Passed to longjmp when we have decoded as many lines as we need.
48 longjmp(PNG_JMPBUF(png_ptr), kPngError);
205 // No other values should be passed to longjmp.
593 longjmp(PNG_JMPBUF(this->png_ptr()), kStopDecoding);
658 longjmp(PNG_JMPBUF(this->png_ptr()), kStopDecoding);
    [all...]
  /bionic/libc/arch-mips/bionic/
setjmp.S 196 * GPOFF and FRAMESIZE must be the same for all setjmp/longjmp routines
416 ALIAS_SYMBOL(longjmp, siglongjmp)
  /external/iputils/
tftpd.c 343 longjmp(timeoutbuf, 1);
  /external/libvpx/libvpx/third_party/libyuv/source/
mjpeg_decoder.cc 117 // longjmp() and rewound the stack to here. Return error.
239 // longjmp() and rewound the stack to here. Return error.
258 // function call, and we called longjmp() and rewound the stack to here.
350 // function call, and we called longjmp() and rewound the stack to here.
459 longjmp(mgr->setjmp_buffer, 1);
  /external/libyuv/files/source/
mjpeg_decoder.cc 117 // longjmp() and rewound the stack to here. Return error.
237 // longjmp() and rewound the stack to here. Return error.
256 // function call, and we called longjmp() and rewound the stack to here.
346 // function call, and we called longjmp() and rewound the stack to here.
455 longjmp(mgr->setjmp_buffer, 1);
  /external/swiftshader/third_party/subzero/runtime/
wasm-runtime.cpp 213 UNIMPLEMENTED(longjmp)
  /external/e2fsprogs/e2fsck/
util.c 85 longjmp(ctx->abort_loc, 1);
238 longjmp(e2fsck_global_ctx->abort_loc, 1);
  /external/libpng/projects/owatcom/
pngconfig.mak 73 # does not work with OpenWatcom because OpenWatcom implements longjmp using
  /external/syslinux/com32/menu/
menumain.c 197 longjmp(timeout_jump, 1);
882 longjmp(timeout_jump, 1);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Enquire/
Enquire.c 31 //#define NO_SIG 1 // Compiler doesn't support signal() or setjmp/longjmp()
222 signal(), or setjmp/longjmp() -DNO_SIG
575 and to prevent variables being put in registers (when setjmp/longjmp
730 #ifdef NO_SIG /* There's no signal(), or setjmp/longjmp() */
739 void longjmp(jmp_buf lab, int val) { return; } function
748 longjmp(lab, 1);
754 longjmp(mlab, 1);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
readline.c 1002 longjmp(jbuf, 1);
  /external/bison/data/
glr.c 291 # define YYLONGJMP(Env, Val) (longjmp (Env, Val), YYASSERT (0))
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_interceptors.cc 480 static void LongJmp(ThreadState *thr, uptr *env) {
512 Printf("ThreadSanitizer: can't find longjmp buf\n");
566 TSAN_INTERCEPTOR(void, longjmp, uptr *env, int val) {
567 // Note: if we call REAL(longjmp) in the context of ScopedInterceptor,
571 SCOPED_INTERCEPTOR_RAW(longjmp, env, val);
573 LongJmp(cur_thread(), env);
574 REAL(longjmp)(env, val);
581 LongJmp(cur_thread(), env);
    [all...]
  /external/libchrome/base/process/
launch_posix.cc 669 // This function runs on the stack specified on the clone call. It uses longjmp
673 longjmp(*env_ptr, 1);
682 // compiled with FORTIFY_SOURCE, glibc's longjmp checks that the stack is moved
687 // Under ASan longjmp() will attempt to clean up the area between the old and
698 // specifying a new stack, so we use setjmp/longjmp to emulate
  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 274 case Intrinsic::longjmp:
  /external/python/cpython2/Modules/
readline.c 1089 longjmp(jbuf, 1);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
LowerInvoke.cpp 22 // really expensive. It basically inserts setjmp/longjmp calls to emulate the
161 LongJmpFn = Intrinsic::getDeclaration(&M, Intrinsic::longjmp);
533 // against null, the block to do the longjmp, and the error block for if it
556 // Create the block to do the longjmp.
557 // Get a pointer to the jmpbuf and longjmp.
  /external/zlib/src/examples/
gzlog.c 247 #include <setjmp.h> /* longjmp */
252 longjmp(gzlog_jump, gzlog_bail); } while (0)
    [all...]

Completed in 2298 milliseconds

1 2 3 4 5 6 7 8 91011>>