Searched refs:lua_CFunction (Results 1 – 12 of 12) sorted by relevance
| /minix3/external/mit/lua/dist/src/ |
| H A D | loadlib.c | 124 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 D | lua.h | 119 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 D | lauxlib.h | 29 lua_CFunction func; 112 lua_CFunction openf, int glb); 203 lua_CFunction closef; /* to close stream (NULL for closed streams) */
|
| H A D | lbaselib.c | 216 lua_CFunction iter) { in pairsmeta() 276 lua_CFunction iter = (luaL_getmetafield(L, 1, "__index") != LUA_TNIL) in luaB_ipairs()
|
| H A D | lstate.h | 140 lua_CFunction panic; /* to be called in unprotected errors */
|
| H A D | lapi.c | 138 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 D | lobject.h | 299 lua_CFunction f; /* light C functions */ 466 lua_CFunction f;
|
| H A D | liolib.c | 198 volatile lua_CFunction cf = p->closef; in aux_close()
|
| H A D | ldo.c | 319 lua_CFunction f; in luaD_precall()
|
| H A D | lauxlib.c | 915 lua_CFunction openf, int glb) { in luaL_requiref()
|
| /minix3/sys/sys/ |
| H A D | lua.h | 86 extern int klua_mod_register(const char *, lua_CFunction);
|
| /minix3/libexec/httpd/ |
| H A D | lua-bozo.c | 172 lua_openlib(lua_State *L, const char *name, lua_CFunction fn) in lua_openlib()
|