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

  /external/chromium_org/third_party/skia/third_party/lua/src/
lcorolib.c 32 if (status == LUA_OK || status == LUA_YIELD) {
100 return lua_yield(L, lua_gettop(L));
110 case LUA_YIELD:
ldo.c 414 ci->u.c.status = LUA_YIELD; /* 'default' status */
502 else if (L->status != LUA_YIELD)
512 ci->u.c.status = LUA_YIELD; /* 'default' status */
539 while (status != LUA_OK && status != LUA_YIELD) { /* error? */
570 L->status = LUA_YIELD;
579 luaD_throw(L, LUA_YIELD);
lbaselib.c 384 return finishpcall(L, (status == LUA_YIELD));
lua.h 46 #define LUA_YIELD 1
273 #define lua_yield(L,n) lua_yieldk(L, (n), 0, NULL) macro
lvm.c 82 if (L->status == LUA_YIELD) { /* did hook yield? */
88 luaD_throw(L, LUA_YIELD);

Completed in 45 milliseconds