HomeSort by relevance Sort by last modified time
    Searched refs:errorJmp (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/skia/third_party/lua/src/
ldo.c 104 if (L->errorJmp) { /* thread has an error handler? */
105 L->errorJmp->status = errcode; /* set status */
106 LUAI_THROW(L, L->errorJmp); /* jump to it */
110 if (G(L)->mainthread->errorJmp) { /* main thread has a handler? */
129 lj.previous = L->errorJmp; /* chain new error handler */
130 L->errorJmp = &lj;
134 L->errorJmp = lj.previous; /* restore old error handler */
lstate.h 173 struct lua_longjmp *errorJmp; /* current error recover point */
lstate.c 207 L->errorJmp = NULL;

Completed in 39 milliseconds