Home
last modified time | relevance | path

Searched refs:ErrToThrow (Results 1 – 5 of 5) sorted by relevance

/dports/games/vavoom/vavoom-1.33/source/
H A Dsys_bsd.cpp277 __Context::ErrToThrow = "Aborted"; in signal_handler()
280 __Context::ErrToThrow = "Floating Point Exception"; in signal_handler()
283 __Context::ErrToThrow = "Illegal Instruction"; in signal_handler()
286 __Context::ErrToThrow = "Segmentation Violation"; in signal_handler()
289 __Context::ErrToThrow = "Terminated"; in signal_handler()
292 __Context::ErrToThrow = "Interrupted by User"; in signal_handler()
295 __Context::ErrToThrow = "Killed"; in signal_handler()
298 __Context::ErrToThrow = "Quited"; in signal_handler()
301 __Context::ErrToThrow = "Terminated by signal"; in signal_handler()
H A Dsys_sdl.cpp449 __Context::ErrToThrow = "Aborted"; in signal_handler()
452 __Context::ErrToThrow = "Floating Point Exception"; in signal_handler()
455 __Context::ErrToThrow = "Illegal Instruction"; in signal_handler()
458 __Context::ErrToThrow = "Segmentation Violation"; in signal_handler()
461 __Context::ErrToThrow = "Terminated"; in signal_handler()
464 __Context::ErrToThrow = "Interrupted by User"; in signal_handler()
467 __Context::ErrToThrow = "Killed"; in signal_handler()
470 __Context::ErrToThrow = "Quited"; in signal_handler()
473 __Context::ErrToThrow = "Terminated by signal"; in signal_handler()
475 dprintf("signal: %s\n", __Context::ErrToThrow); in signal_handler()
H A Dsys_lin.cpp444 __Context::ErrToThrow = "Aborted"; in signal_handler()
447 __Context::ErrToThrow = "Floating Point Exception"; in signal_handler()
450 __Context::ErrToThrow = "Illegal Instruction"; in signal_handler()
453 __Context::ErrToThrow = "Segmentation Violation"; in signal_handler()
456 __Context::ErrToThrow = "Terminated"; in signal_handler()
459 __Context::ErrToThrow = "Interrupted by User"; in signal_handler()
462 __Context::ErrToThrow = "Killed"; in signal_handler()
465 __Context::ErrToThrow = "Quited"; in signal_handler()
468 __Context::ErrToThrow = "Terminated by signal"; in signal_handler()
/dports/games/vavoom/vavoom-1.33/libs/core/
H A Dexception.h90 static const char* ErrToThrow; variable
104 throw VavoomError(__Context::ErrToThrow); } else {
H A Dexception.cpp46 const char* __Context::ErrToThrow; member in __Context