Home
last modified time | relevance | path

Searched refs:luaF_close (Results 1 – 11 of 11) sorted by relevance

/freebsd-13.1/sys/contrib/openzfs/module/lua/
H A Dlfunc.h27 LUAI_FUNC void luaF_close (lua_State *L, StkId level);
H A Dlstate.c223 luaF_close(L, L->stack); /* close all upvalues for this thread */ in close_state()
256 luaF_close(L1, L1->stack); /* close all upvalues for this thread */ in luaE_freethread()
H A Dlfunc.c88 void luaF_close (lua_State *L, StkId level) { in luaF_close() function
H A Dlvm.c565 if (a > 0) luaF_close(L, ci->u.l.base + a - 1); \
803 if (cl->p->sizep > 0) luaF_close(L, oci->u.l.base); in luaV_execute()
819 if (cl->p->sizep > 0) luaF_close(L, base); in luaV_execute()
H A Dldo.c541 luaF_close(L, oldtop); in recover()
680 luaF_close(L, oldtop); /* close possible pending closures */ in luaD_pcall()
/freebsd-13.1/contrib/lua/src/
H A Dlfunc.h62 LUAI_FUNC int luaF_close (lua_State *L, StkId level, int status);
H A Dlstate.c274 luaF_close(L, L->stack, CLOSEPROTECT); /* close all upvalues */ in close_state()
319 luaF_close(L1, L1->stack, NOCLOSINGMETH); /* close all upvalues */ in luaE_freethread()
335 status = luaF_close(L, L->stack, CLOSEPROTECT); in lua_resetthread()
H A Dldo.c121 errcode = luaF_close(L, L->stack, errcode); /* close all upvalues */ in luaD_throw()
412 luaF_close(L, res, LUA_OK); /* may change the stack */ in moveresults()
646 status = luaF_close(L, oldtop, status); /* may change the stack */ in recover()
789 status = luaF_close(L, oldtop, status); in luaD_pcall()
H A Dlfunc.c223 int luaF_close (lua_State *L, StkId level, int status) { in luaF_close() function
H A Dlvm.c1537 Protect(luaF_close(L, ra, LUA_OK)); in luaV_execute()
1645 luaF_close(L, base, NOCLOSINGMETH); in luaV_execute()
1675 luaF_close(L, base, LUA_OK); in luaV_execute()
H A Dlapi.c191 luaF_close(L, L->top + diff, LUA_OK); in lua_settop()