Lines Matching full:setjmp
223 to your routine. Therefore, you will need to call setjmp and pass
228 See your documentation of setjmp/longjmp for your compiler for more
229 information on setjmp/longjmp. See the discussion on libpng error
232 back to your setjmp, you will want to call png_destroy_read_struct() to
235 if (setjmp(png_jmpbuf(png_ptr)))
243 If you would rather avoid the complexity of setjmp/longjmp issues,
1506 if (setjmp(png_jmpbuf(png_ptr)))
1540 if (setjmp(png_jmpbuf(png_ptr)))
1695 setjmp() and pass the png_jmpbuf(png_ptr). If you
1698 call a png_*() function. See your documentation of setjmp/longjmp
1699 for your compiler for more information on setjmp/longjmp. See
1703 if (setjmp(png_jmpbuf(png_ptr)))
1712 If you would rather avoid the complexity of setjmp/longjmp issues,
2575 setjmp() and longjmp() (unless you have compiled libpng with
2606 The motivation behind using setjmp() and longjmp() is the C++ throw and
2611 after setjmp returns non-zero besides returning itself. Consult your