Home
last modified time | relevance | path

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

/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dldo.c90 L->errorJmp = NULL; in resetstack()
95 if (L->errorJmp) { in luaD_throw()
96 L->errorJmp->status = errcode; in luaD_throw()
97 LUAI_THROW(L, L->errorJmp); in luaD_throw()
114 lj.previous = L->errorJmp; /* chain new error handler */ in luaD_rawrunprotected()
115 L->errorJmp = &lj; in luaD_rawrunprotected()
119 L->errorJmp = lj.previous; /* restore old error handler */ in luaD_rawrunprotected()
H A Dlstate.h125 struct lua_longjmp *errorJmp; /* current error recover point */ member
H A Dlstate.c88 L->errorJmp = NULL; in preinit_state()
/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dldo.c173 if (L->errorJmp) { /* thread has an error handler? */ in luaD_throw()
174 L->errorJmp->status = errcode; /* set status */ in luaD_throw()
175 LUAI_THROW(L, L->errorJmp); /* jump to it */ in luaD_throw()
179 if (G(L)->mainthread->errorJmp) { /* main thread has a handler? */ in luaD_throw()
198 lj.previous = L->errorJmp; /* chain new error handler */ in luaD_rawrunprotected()
200 L->errorJmp = &lj; in luaD_rawrunprotected()
204 L->errorJmp = lj.previous; /* restore old error handler */ in luaD_rawrunprotected()
H A Dlstate.h175 struct lua_longjmp *errorJmp; /* current error recover point */ member
H A Dlstate.c206 L->errorJmp = NULL; in preinit_state()