Home
last modified time | relevance | path

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

/redis-3.2.3/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()
/redis-3.2.3/src/
H A Dscripting.c809 void luaLoadLib(lua_State *lua, const char *libname, lua_CFunction luafunc) { in luaLoadLib()