Lines Matching refs:lua_State

46 static void *ll_load (lua_State *L, const char *path);
47 static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym);
68 static void *ll_load (lua_State *L, const char *path) { in ll_load()
75 static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) { in ll_sym()
97 static void setprogdir (lua_State *L) { in setprogdir()
112 static void pusherror (lua_State *L) { in pusherror()
127 static void *ll_load (lua_State *L, const char *path) { in ll_load()
134 static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) { in ll_sym()
159 static void pusherror (lua_State *L) { in pusherror()
191 static void *ll_load (lua_State *L, const char *path) { in ll_load()
212 static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) { in ll_sym()
244 static void *ll_load (lua_State *L, const char *path) { in ll_load()
251 static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) { in ll_sym()
262 static void **ll_register (lua_State *L, const char *path) { in ll_register()
286 static int gctm (lua_State *L) { in gctm()
294 static int ll_loadfunc (lua_State *L, const char *path, const char *sym) { in ll_loadfunc()
309 static int ll_loadlib (lua_State *L) { in ll_loadlib()
340 static const char *pushnexttemplate (lua_State *L, const char *path) { in pushnexttemplate()
351 static const char *findfile (lua_State *L, const char *name, in findfile()
374 static void loaderror (lua_State *L, const char *filename) { in loaderror()
380 static int loader_Lua (lua_State *L) { in loader_Lua()
391 static const char *mkfuncname (lua_State *L, const char *modname) { in mkfuncname()
402 static int loader_C (lua_State *L) { in loader_C()
414 static int loader_Croot (lua_State *L) { in loader_Croot()
435 static int loader_preload (lua_State *L) { in loader_preload()
451 static int ll_require (lua_State *L) { in ll_require()
507 static void setfenv (lua_State *L) { in setfenv()
519 static void dooptions (lua_State *L, int n) { in dooptions()
529 static void modinit (lua_State *L, const char *modname) { in modinit()
544 static int ll_module (lua_State *L) { in ll_module()
572 static int ll_seeall (lua_State *L) { in ll_seeall()
592 static void setpath (lua_State *L, const char *fieldname, const char *envname, in setpath()
627 LUALIB_API int luaopen_package (lua_State *L) { in luaopen_package()