Home
last modified time | relevance | path

Searched refs:LUA_OK (Results 1 – 7 of 7) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/zfs/lua/
H A Dlcorolib.c25 if (lua_status(co) == LUA_OK && lua_gettop(co) == 0) { in auxresume()
31 if (status == LUA_OK || status == LUA_YIELD) { in auxresume()
112 case LUA_OK: { in luaB_costatus()
H A Dldo.c132 lj.status = LUA_OK; in luaD_rawrunprotected()
426 lua_assert(ci->u.c.status != LUA_OK); in finishCcall()
506 if (L->status == LUA_OK) { /* may be starting a coroutine */ in resume_cb()
516 L->status = LUA_OK; in resume_cb()
546 api_checknelems(L, (L->status == LUA_OK) ? nargs + 1 : nargs); in lua_resume()
551 while (status != LUA_OK && status != LUA_YIELD) { /* error? */ in lua_resume()
608 if (status != LUA_OK) { /* an error occurred? */ in luaD_pcall()
H A Dlstate.c216 L->status = LUA_OK; in preinit_state()
306 if (luaD_rawrunprotected(L, f_luaopen, NULL) != LUA_OK) { in lua_newstate()
H A Dlapi.c102 res = (luaD_rawrunprotected(L, &growstack, &size) == LUA_OK); in lua_checkstack()
884 else return LUA_OK; in lua_getctx()
895 api_check(L, L->status == LUA_OK, "cannot do calls on non-normal thread"); in lua_callk()
936 api_check(L, L->status == LUA_OK, "cannot do calls on non-normal thread"); in lua_pcallk()
964 status = LUA_OK; /* if it is here, there were no errors */ in lua_pcallk()
980 if (status == LUA_OK) { /* no errors? */ in lua_load()
H A Dlua.h43 #define LUA_OK 0 macro
H A Dlgc.c827 if (status != LUA_OK && propagateerrors) { /* error while running __gc? */ in GCTM()
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzcp.c869 case LUA_OK: { in zcp_eval_impl()