Home
last modified time | relevance | path

Searched refs:lua_xmove (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/mit/lua/dist/src/
H A Dlcorolib.c42 lua_xmove(L, co, narg); in auxresume()
50 lua_xmove(co, L, nres); /* move yielded values */ in auxresume()
54 lua_xmove(co, L, 1); /* move error message */ in auxresume()
85 lua_xmove(co, L, 1); /* move error message to the caller */ in luaB_auxwrap()
104 lua_xmove(L, NL, 1); /* move function from L to NL */ in luaB_cocreate()
186 lua_xmove(co, L, 1); /* move error message */ in luaB_close()
H A Dldblib.c142 lua_xmove(L1, L, 1); /* move object to the "main" stack */ in treatstackoption()
163 lua_xmove(L, L1, 1); in db_getinfo()
225 lua_xmove(L1, L, 1); /* move local value */ in db_getlocal()
250 lua_xmove(L, L1, 1); in db_setlocal()
391 lua_pushthread(L1); lua_xmove(L1, L, 1); /* key (thread) */ in db_sethook()
414 lua_pushthread(L1); lua_xmove(L1, L, 1); in db_gethook()
H A Dlua.h190 LUA_API void (lua_xmove) (lua_State *from, lua_State *to, int n); variable
H A Dlapi.c134 LUA_API void lua_xmove (lua_State *from, lua_State *to, int n) { in lua_xmove() function