Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dldo.c104 if (L->errorJmp) { /* thread has an error handler? */ in luaD_throw()
105 L->errorJmp->status = errcode; /* set status */ in luaD_throw()
106 LUAI_THROW(L, L->errorJmp); /* jump to it */ in luaD_throw()
110 if (G(L)->mainthread->errorJmp) { /* main thread has a handler? */ in luaD_throw()
129 lj.previous = L->errorJmp; /* chain new error handler */ in luaD_rawrunprotected()
130 L->errorJmp = &lj; in luaD_rawrunprotected()
134 L->errorJmp = lj.previous; /* restore old error handler */ in luaD_rawrunprotected()
Dlstate.h173 struct lua_longjmp *errorJmp; /* current error recover point */ member
Dlstate.c209 L->errorJmp = NULL; in preinit_state()