Searched refs:LUA_YIELD (Results 1 – 5 of 5) sorted by relevance
32 if (status == LUA_OK || status == LUA_YIELD) { in auxresume()110 case LUA_YIELD: in luaB_costatus()
421 ci->u.c.status = LUA_YIELD; /* 'default' status */ in finishCcall()509 else if (L->status != LUA_YIELD) in resume()519 ci->u.c.status = LUA_YIELD; /* 'default' status */ in resume()547 while (status != LUA_OK && status != LUA_YIELD) { /* error? */ in lua_resume()578 L->status = LUA_YIELD; in lua_yieldk()587 luaD_throw(L, LUA_YIELD); in lua_yieldk()
384 return finishpcall(L, (status == LUA_YIELD)); in pcallcont()
82 if (L->status == LUA_YIELD) { /* did hook yield? */ in traceexec()88 luaD_throw(L, LUA_YIELD); in traceexec()
46 #define LUA_YIELD 1 macro