Home
last modified time | relevance | path

Searched refs:errorJmp (Results 1 – 6 of 6) sorted by relevance

/freebsd/sys/contrib/openzfs/module/lua/
H A Dldo.c182 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()
H A Dlstate.h174 struct lua_longjmp *errorJmp; /* current error recover point */ member
H A Dlstate.c205 L->errorJmp = NULL; in preinit_state()
/freebsd/contrib/lua/src/
H A Dldo.c116 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()
H A Dlstate.h323 struct lua_longjmp *errorJmp; /* current error recover point */ member
H A Dlstate.c256 L->errorJmp = NULL; in preinit_thread()