Home
last modified time | relevance | path

Searched refs:lua_CFunction (Results 1 – 12 of 12) sorted by relevance

/minix3/external/mit/lua/dist/src/
H A Dloadlib.c124 static lua_CFunction lsys_sym (lua_State *L, void *lib, const char *sym);
147 #define cast_func(p) (__extension__ (lua_CFunction)(p))
149 #define cast_func(p) ((lua_CFunction)(p))
165 static lua_CFunction lsys_sym (lua_State *L, void *lib, const char *sym) { in lsys_sym()
166 lua_CFunction f = cast_func(dlsym(lib, sym)); in lsys_sym()
232 static lua_CFunction lsys_sym (lua_State *L, void *lib, const char *sym) { in lsys_sym()
233 lua_CFunction f = (lua_CFunction)GetProcAddress((HMODULE)lib, sym); in lsys_sym()
267 static lua_CFunction lsys_sym (lua_State *L, void *lib, const char *sym) { in lsys_sym()
347 lua_CFunction f = lsys_sym(L, reg, sym); in lookforfunc()
732 static const lua_CFunction searchers[] = in createsearcherstable()
H A Dlua.h119 typedef int (*lua_CFunction) (lua_State *L); typedef
163 LUA_API lua_CFunction (lua_atpanic) (lua_State *L, lua_CFunction panicf);
204 LUA_API lua_CFunction (lua_tocfunction) (lua_State *L, int idx);
265 LUA_API void (lua_pushcclosure) (lua_State *L, lua_CFunction fn, int n);
H A Dlauxlib.h29 lua_CFunction func;
112 lua_CFunction openf, int glb);
203 lua_CFunction closef; /* to close stream (NULL for closed streams) */
H A Dlbaselib.c216 lua_CFunction iter) { in pairsmeta()
276 lua_CFunction iter = (luaL_getmetafield(L, 1, "__index") != LUA_TNIL) in luaB_ipairs()
H A Dlstate.h140 lua_CFunction panic; /* to be called in unprotected errors */
H A Dlapi.c138 LUA_API lua_CFunction lua_atpanic (lua_State *L, lua_CFunction panicf) { in lua_atpanic()
139 lua_CFunction old; in lua_atpanic()
410 LUA_API lua_CFunction lua_tocfunction (lua_State *L, int idx) { in lua_tocfunction()
535 LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) { in lua_pushcclosure()
H A Dlobject.h299 lua_CFunction f; /* light C functions */
466 lua_CFunction f;
H A Dliolib.c198 volatile lua_CFunction cf = p->closef; in aux_close()
H A Dldo.c319 lua_CFunction f; in luaD_precall()
H A Dlauxlib.c915 lua_CFunction openf, int glb) { in luaL_requiref()
/minix3/sys/sys/
H A Dlua.h86 extern int klua_mod_register(const char *, lua_CFunction);
/minix3/libexec/httpd/
H A Dlua-bozo.c172 lua_openlib(lua_State *L, const char *name, lua_CFunction fn) in lua_openlib()