Lines Matching refs:lua_State
29 typedef void (*Pfunc) (lua_State *L, void *ud);
31 LUAI_FUNC int luaD_protectedparser (lua_State *L, ZIO *z, const char *name,
33 LUAI_FUNC void luaD_hook (lua_State *L, int event, int line);
34 LUAI_FUNC int luaD_precall (lua_State *L, StkId func, int nresults);
35 LUAI_FUNC void luaD_call (lua_State *L, StkId func, int nResults,
37 LUAI_FUNC int luaD_pcall (lua_State *L, Pfunc func, void *u,
39 LUAI_FUNC int luaD_poscall (lua_State *L, StkId firstResult, int nres);
40 LUAI_FUNC void luaD_reallocstack (lua_State *L, int newsize);
41 LUAI_FUNC void luaD_growstack (lua_State *L, int n);
42 LUAI_FUNC void luaD_shrinkstack (lua_State *L);
44 LUAI_FUNC l_noret luaD_throw (lua_State *L, int errcode);
45 LUAI_FUNC int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud);