/freebsd/contrib/lua/src/ |
H A D | loadlib.c | 99 static lua_CFunction lsys_sym (lua_State *L, void *lib, const char *sym); 122 #define cast_func(p) (__extension__ (lua_CFunction)(p)) 124 #define cast_func(p) ((lua_CFunction)(p)) 141 static lua_CFunction lsys_sym (lua_State *L, void *lib, const char *sym) { in lsys_sym() 142 lua_CFunction f = cast_func(dlsym(lib, sym)); in lsys_sym() 217 static lua_CFunction lsys_sym (lua_State *L, void *lib, const char *sym) { in lsys_sym() 218 lua_CFunction f = (lua_CFunction)(voidf)GetProcAddress((HMODULE)lib, sym); in lsys_sym() 252 static lua_CFunction lsys_sym (lua_State *L, void *lib, const char *sym) { in lsys_sym() 402 lua_CFunction f = lsys_sym(L, reg, sym); in lookforfunc() 711 static const lua_CFunction searchers[] = { in createsearcherstable()
|
H A D | lua.h | 106 typedef int (*lua_CFunction) (lua_State *L); typedef 169 LUA_API lua_CFunction (lua_atpanic) (lua_State *L, lua_CFunction panicf); 206 LUA_API lua_CFunction (lua_tocfunction) (lua_State *L, int idx); 252 LUA_API void (lua_pushcclosure) (lua_State *L, lua_CFunction fn, int n);
|
H A D | lauxlib.h | 40 lua_CFunction func; 118 lua_CFunction openf, int glb); 247 lua_CFunction closef; /* to close stream (NULL for closed streams) */
|
H A D | lapi.c | 144 LUA_API lua_CFunction lua_atpanic (lua_State *L, lua_CFunction panicf) { in lua_atpanic() 145 lua_CFunction old; in lua_atpanic() 438 LUA_API lua_CFunction lua_tocfunction (lua_State *L, int idx) { in lua_tocfunction() 579 LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) { in lua_pushcclosure()
|
H A D | lstate.h | 295 lua_CFunction panic; /* to be called in unprotected errors */
|
H A D | lobject.h | 52 lua_CFunction f; /* light C functions */ 651 lua_CFunction f;
|
H A D | liolib.c | 216 volatile lua_CFunction cf = p->closef; in aux_close()
|
H A D | ltable.c | 178 lua_CFunction f = fvalue(key); in mainpositionTV()
|
H A D | lauxlib.c | 975 lua_CFunction openf, int glb) { in luaL_requiref()
|
H A D | ldo.c | 517 lua_CFunction f) { in precallC()
|
H A D | ltests.c | 1457 lua_CFunction func = lua_tocfunction(L1, getindex); in runC()
|
/freebsd/sys/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);
|
/freebsd/sys/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() 417 LUA_API lua_CFunction lua_tocfunction (lua_State *L, int idx) { in lua_tocfunction() 554 LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) { in lua_pushcclosure() 889 lua_CFunction k) { in lua_callk() 928 int ctx, lua_CFunction k) { in lua_pcallk()
|
H A D | lobject.h | 390 lua_CFunction f; /* light C functions */ 519 lua_CFunction f;
|
H A D | lbaselib.c | 179 lua_CFunction iter) { in pairsmeta()
|
H A D | ldo.c | 381 lua_CFunction f; in luaD_precall() 656 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()
|
/freebsd/lib/clang/liblldb/ |
H A D | LLDBWrapLua.cpp | 814 lua_CFunction function; 1002 lua_CFunction get; 1003 lua_CFunction set; 1026 lua_CFunction getmethod; 1027 lua_CFunction setmethod; 1046 lua_CFunction constructor; 1383 …N void SWIG_Lua_add_variable(lua_State *L,const char *name,lua_CFunction getFn,lua_CFunction setF… 2034 …N void SWIG_Lua_add_variable(lua_State *L,const char *name,lua_CFunction getFn,lua_CFunction setF… in SWIG_Lua_add_variable()
|