Searched refs:LUA_YIELD (Results 1 – 9 of 9) sorted by relevance
30 if (status == LUA_OK || status == LUA_YIELD) { in auxresume()108 case LUA_YIELD: in luaB_costatus()
496 ci->u.c.status = LUA_YIELD; /* 'default' status */ in finishCcall()584 else if (L->status != LUA_YIELD) in resume_cb()594 ci->u.c.status = LUA_YIELD; /* 'default' status */ in resume_cb()622 while (status != LUA_OK && status != LUA_YIELD) { /* error? */ in lua_resume()653 L->status = LUA_YIELD; in lua_yieldk()662 luaD_throw(L, LUA_YIELD); in lua_yieldk()
47 if (L->status == LUA_YIELD) { in swapextra()
81 if (L->status == LUA_YIELD) { /* did hook yield? */ in traceexec()87 luaD_throw(L, LUA_YIELD); in traceexec()
393 lua_assert(L->status == LUA_YIELD); in resume()421 if (L->status != LUA_YIELD && (L->status != 0 || L->ci != L->base_ci)) in lua_resume()450 L->status = LUA_YIELD; in lua_yield()
493 case LUA_YIELD: in costatus()529 if (status == 0 || status == LUA_YIELD) { in auxresume()
43 #define LUA_YIELD 1 macro
395 if (L->status == LUA_YIELD) { /* did hook yield? */ in luaV_execute()
45 #define LUA_YIELD 1 macro