Lines Matching refs:dsp

435 save_dbg_stuff(struct dbg_stuff *dsp)  in save_dbg_stuff()  argument
437 dsp->trylevel = trylevel; trylevel = 0; in save_dbg_stuff()
438 dsp->force_abort = force_abort; force_abort = FALSE; in save_dbg_stuff()
439 dsp->caught_stack = caught_stack; caught_stack = NULL; in save_dbg_stuff()
440 dsp->vv_exception = v_exception(NULL); in save_dbg_stuff()
441 dsp->vv_throwpoint = v_throwpoint(NULL); in save_dbg_stuff()
444 dsp->did_emsg = did_emsg; did_emsg = FALSE; in save_dbg_stuff()
445 dsp->got_int = got_int; got_int = FALSE; in save_dbg_stuff()
446 dsp->did_throw = did_throw; did_throw = FALSE; in save_dbg_stuff()
447 dsp->need_rethrow = need_rethrow; need_rethrow = FALSE; in save_dbg_stuff()
448 dsp->check_cstack = check_cstack; check_cstack = FALSE; in save_dbg_stuff()
449 dsp->current_exception = current_exception; current_exception = NULL; in save_dbg_stuff()
453 restore_dbg_stuff(struct dbg_stuff *dsp) in restore_dbg_stuff() argument
456 trylevel = dsp->trylevel; in restore_dbg_stuff()
457 force_abort = dsp->force_abort; in restore_dbg_stuff()
458 caught_stack = dsp->caught_stack; in restore_dbg_stuff()
459 (void)v_exception(dsp->vv_exception); in restore_dbg_stuff()
460 (void)v_throwpoint(dsp->vv_throwpoint); in restore_dbg_stuff()
461 did_emsg = dsp->did_emsg; in restore_dbg_stuff()
462 got_int = dsp->got_int; in restore_dbg_stuff()
463 did_throw = dsp->did_throw; in restore_dbg_stuff()
464 need_rethrow = dsp->need_rethrow; in restore_dbg_stuff()
465 check_cstack = dsp->check_cstack; in restore_dbg_stuff()
466 current_exception = dsp->current_exception; in restore_dbg_stuff()