Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dlcorolib.c24 if (lua_status(co) == LUA_OK && lua_gettop(co) == 0) { in auxresume()
30 if (status == LUA_OK || status == LUA_YIELD) { in auxresume()
111 case LUA_OK: { in luaB_costatus()
H A Dldo.c197 lj.status = LUA_OK; in luaD_rawrunprotected()
497 lua_assert(ci->u.c.status != LUA_OK); in finishCcall()
577 if (L->status == LUA_OK) { /* may be starting a coroutine */ in resume_cb()
587 L->status = LUA_OK; in resume_cb()
617 api_checknelems(L, (L->status == LUA_OK) ? nargs + 1 : nargs); in lua_resume()
622 while (status != LUA_OK && status != LUA_YIELD) { /* error? */ in lua_resume()
679 if (status != LUA_OK) { /* an error occurred? */ in luaD_pcall()
H A Dlstate.c215 L->status = LUA_OK; in preinit_state()
306 if (luaD_rawrunprotected(L, f_luaopen, NULL) != LUA_OK) { in lua_newstate()
H A Dlapi.c100 res = (luaD_rawrunprotected(L, &growstack, &size) == LUA_OK); in lua_checkstack()
882 else return LUA_OK; in lua_getctx()
893 api_check(L, L->status == LUA_OK, "cannot do calls on non-normal thread"); in lua_callk()
934 api_check(L, L->status == LUA_OK, "cannot do calls on non-normal thread"); in lua_pcallk()
962 status = LUA_OK; /* if it is here, there were no errors */ in lua_pcallk()
978 if (status == LUA_OK) { /* no errors? */ in lua_load()
H A Dlgc.c826 if (status != LUA_OK && propagateerrors) { /* error while running __gc? */ in GCTM()
/f-stack/freebsd/contrib/openzfs/include/sys/lua/
H A Dlua.h44 #define LUA_OK 0 macro
/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Dzcp.c871 case LUA_OK: { in zcp_eval_impl()