Home
last modified time | relevance | path

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

/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dloadlib.c47 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 Dlua.h52 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 Dlapi.c130 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 Dlstate.h88 lua_CFunction panic; /* to be called in unprotected errors */
H A Dlbaselib.c619 lua_CFunction f, lua_CFunction u) { in auxopen()
H A Dlauxlib.h37 lua_CFunction func;
H A Dlobject.h297 lua_CFunction f;
H A Dliolib.c530 static void newfenv (lua_State *L, lua_CFunction cls) { in newfenv()
/f-stack/freebsd/contrib/openzfs/include/sys/lua/
H A Dlua.h55 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 Dlauxlib.h23 lua_CFunction func;
87 lua_CFunction openf, int glb);
/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dlstate.h84 lua_CFunction k; /* continuation in case of yields */
143 lua_CFunction panic; /* to be called in unprotected errors */
H A Dlapi.c124 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 Dlobject.h390 lua_CFunction f; /* light C functions */
516 lua_CFunction f;
H A Dlbaselib.c179 lua_CFunction iter) { in pairsmeta()
H A Dldo.c367 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 Dlauxlib.c743 lua_CFunction openf, int glb) { in luaL_requiref()
/f-stack/app/redis-5.0.5/src/
H A Dscripting.c832 void luaLoadLib(lua_State *lua, const char *libname, lua_CFunction luafunc) { in luaLoadLib()