Searched refs:errorJmp (Results 1 – 6 of 6) sorted by relevance
182 if (L->errorJmp) { /* thread has an error handler? */ in luaD_throw()183 L->errorJmp->status = errcode; /* set status */ in luaD_throw()184 LUAI_THROW(L, L->errorJmp); /* jump to it */ in luaD_throw()188 if (G(L)->mainthread->errorJmp) { /* main thread has a handler? */ in luaD_throw()212 lj.previous = L->errorJmp; /* chain new error handler */ in luaD_rawrunprotected()213 L->errorJmp = &lj; in luaD_rawrunprotected()217 L->errorJmp = lj.previous; /* restore old error handler */ in luaD_rawrunprotected()
174 struct lua_longjmp *errorJmp; /* current error recover point */ member
205 L->errorJmp = NULL; in preinit_state()
116 if (L->errorJmp) { /* thread has an error handler? */ in luaD_throw()117 L->errorJmp->status = errcode; /* set status */ in luaD_throw()118 LUAI_THROW(L, L->errorJmp); /* jump to it */ in luaD_throw()123 if (g->mainthread->errorJmp) { /* main thread has a handler? */ in luaD_throw()142 lj.previous = L->errorJmp; /* chain new error handler */ in luaD_rawrunprotected()143 L->errorJmp = &lj; in luaD_rawrunprotected()147 L->errorJmp = lj.previous; /* restore old error handler */ in luaD_rawrunprotected()
323 struct lua_longjmp *errorJmp; /* current error recover point */ member
256 L->errorJmp = NULL; in preinit_thread()