Searched refs:lua_CFunction (Results 1 – 17 of 17) sorted by relevance
| /f-stack/app/redis-5.0.5/deps/lua/src/ |
| H A D | loadlib.c | 47 static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym); 75 static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) { in ll_sym() 76 lua_CFunction f = (lua_CFunction)dlsym(lib, sym); in ll_sym() 134 static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) { in ll_sym() 135 lua_CFunction f = (lua_CFunction)GetProcAddress((HINSTANCE)lib, sym); in ll_sym() 212 static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) { in ll_sym() 218 return (lua_CFunction)NSAddressOfSymbol(nss); in ll_sym() 251 static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) { in ll_sym() 300 lua_CFunction f = ll_sym(L, *reg, sym); in ll_loadfunc() 623 static const lua_CFunction loaders[] =
|
| H A D | lua.h | 52 typedef int (*lua_CFunction) (lua_State *L); typedef 114 LUA_API lua_CFunction (lua_atpanic) (lua_State *L, lua_CFunction panicf); 151 LUA_API lua_CFunction (lua_tocfunction) (lua_State *L, int idx); 168 LUA_API void (lua_pushcclosure) (lua_State *L, lua_CFunction fn, int n); 203 LUA_API int (lua_cpcall) (lua_State *L, lua_CFunction func, void *ud);
|
| H A D | lapi.c | 130 LUA_API lua_CFunction lua_atpanic (lua_State *L, lua_CFunction panicf) { in lua_atpanic() 131 lua_CFunction old; in lua_atpanic() 379 LUA_API lua_CFunction lua_tocfunction (lua_State *L, int idx) { in lua_tocfunction() 486 LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) { in lua_pushcclosure() 832 lua_CFunction func; 850 LUA_API int lua_cpcall (lua_State *L, lua_CFunction func, void *ud) { in lua_cpcall()
|
| H A D | lstate.h | 88 lua_CFunction panic; /* to be called in unprotected errors */
|
| H A D | lbaselib.c | 619 lua_CFunction f, lua_CFunction u) { in auxopen()
|
| H A D | lauxlib.h | 37 lua_CFunction func;
|
| H A D | lobject.h | 297 lua_CFunction f;
|
| H A D | liolib.c | 530 static void newfenv (lua_State *L, lua_CFunction cls) { in newfenv()
|
| /f-stack/freebsd/contrib/openzfs/include/sys/lua/ |
| H A D | lua.h | 55 typedef int (*lua_CFunction) (lua_State *L); typedef 135 LUA_API lua_CFunction (lua_atpanic) (lua_State *L, lua_CFunction panicf); 174 LUA_API lua_CFunction (lua_tocfunction) (lua_State *L, int idx); 214 LUA_API void (lua_pushcclosure) (lua_State *L, lua_CFunction fn, int n); 252 lua_CFunction k); 258 int ctx, lua_CFunction k); 272 lua_CFunction k);
|
| H A D | lauxlib.h | 23 lua_CFunction func; 87 lua_CFunction openf, int glb);
|
| /f-stack/freebsd/contrib/openzfs/module/lua/ |
| H A D | lstate.h | 84 lua_CFunction k; /* continuation in case of yields */ 143 lua_CFunction panic; /* to be called in unprotected errors */
|
| H A D | lapi.c | 124 LUA_API lua_CFunction lua_atpanic (lua_State *L, lua_CFunction panicf) { in lua_atpanic() 125 lua_CFunction old; in lua_atpanic() 415 LUA_API lua_CFunction lua_tocfunction (lua_State *L, int idx) { in lua_tocfunction() 552 LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) { in lua_pushcclosure() 887 lua_CFunction k) { in lua_callk() 926 int ctx, lua_CFunction k) { in lua_pcallk()
|
| H A D | lobject.h | 390 lua_CFunction f; /* light C functions */ 516 lua_CFunction f;
|
| H A D | lbaselib.c | 179 lua_CFunction iter) { in pairsmeta()
|
| H A D | ldo.c | 367 lua_CFunction f; in luaD_precall() 642 LUA_API int lua_yieldk (lua_State *L, int nresults, int ctx, lua_CFunction k) { in lua_yieldk()
|
| H A D | lauxlib.c | 743 lua_CFunction openf, int glb) { in luaL_requiref()
|
| /f-stack/app/redis-5.0.5/src/ |
| H A D | scripting.c | 832 void luaLoadLib(lua_State *lua, const char *libname, lua_CFunction luafunc) { in luaLoadLib()
|