Home
last modified time | relevance | path

Searched refs:LUA_YIELD (Results 1 – 5 of 5) sorted by relevance

/external/lua/src/
Dldo.c38 #define errorstatus(s) ((s) > LUA_YIELD)
524 lua_assert((ci->callstatus & CIST_YPCALL) || status == LUA_YIELD); in finishCcall()
553 finishCcall(L, LUA_YIELD); /* complete its execution */ in unroll()
628 lua_assert(L->status == LUA_YIELD); in resume()
636 n = (*ci->u.c.k)(L, LUA_YIELD, ci->u.c.ctx); /* call continuation */ in resume()
656 else if (L->status != LUA_YIELD) in lua_resume()
704 L->status = LUA_YIELD; in lua_yieldk()
713 luaD_throw(L, LUA_YIELD); in lua_yieldk()
Dlcorolib.c40 if (status == LUA_OK || status == LUA_YIELD) { in auxresume()
116 case LUA_YIELD: in luaB_costatus()
Dldebug.c63 if (L->status == LUA_YIELD) { in swapextra()
690 if (L->status == LUA_YIELD) { /* did hook yield? */ in luaG_traceexec()
696 luaD_throw(L, LUA_YIELD); in luaG_traceexec()
Dlbaselib.c409 if (status != LUA_OK && status != LUA_YIELD) { /* error? */ in finishpcall()
Dlua.h48 #define LUA_YIELD 1 macro