Lines Matching full:setjmp
1044 to your routine. Therefore, you will need to call setjmp and pass
1049 See your documentation of setjmp/longjmp for your compiler for more
1050 information on setjmp/longjmp. See the discussion on libpng error
1053 back to your setjmp, you will want to call png_destroy_read_struct() to
1056 if (setjmp(png_jmpbuf(png_ptr)))
1064 If you would rather avoid the complexity of setjmp/longjmp issues,
2327 if (setjmp(png_jmpbuf(png_ptr)))
2361 if (setjmp(png_jmpbuf(png_ptr)))
2516 setjmp() and pass the png_jmpbuf(png_ptr). If you
2519 call a png_*() function. See your documentation of setjmp/longjmp
2520 for your compiler for more information on setjmp/longjmp. See
2524 if (setjmp(png_jmpbuf(png_ptr)))
2533 If you would rather avoid the complexity of setjmp/longjmp issues,
3396 setjmp() and longjmp() (unless you have compiled libpng with
3427 The motivation behind using setjmp() and longjmp() is the C++ throw and
3432 after setjmp returns non-zero besides returning itself. Consult your