Searched refs:lua_CFunction (Results 1 – 10 of 10) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
D | loadlib.c | 113 static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym); 141 static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) { in ll_sym() 142 lua_CFunction f = (lua_CFunction)dlsym(lib, sym); in ll_sym() 206 static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) { in ll_sym() 207 lua_CFunction f = (lua_CFunction)GetProcAddress((HMODULE)lib, sym); in ll_sym() 241 static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) { in ll_sym() 298 lua_CFunction f = ll_sym(L, reg, sym); in ll_loadfunc() 676 static const lua_CFunction searchers[] = in createsearcherstable()
|
D | lstate.h | 83 lua_CFunction k; /* continuation in case of yields */ 142 lua_CFunction panic; /* to be called in unprotected errors */
|
D | lapi.c | 127 LUA_API lua_CFunction lua_atpanic (lua_State *L, lua_CFunction panicf) { in lua_atpanic() 128 lua_CFunction old; in lua_atpanic() 418 LUA_API lua_CFunction lua_tocfunction (lua_State *L, int idx) { in lua_tocfunction() 555 LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) { in lua_pushcclosure() 890 lua_CFunction k) { in lua_callk() 929 int ctx, lua_CFunction k) { in lua_pcallk()
|
D | lobject.h | 392 lua_CFunction f; /* light C functions */ 518 lua_CFunction f;
|
D | lbaselib.c | 197 lua_CFunction iter) { in pairsmeta()
|
D | ldo.c | 297 lua_CFunction f; in luaD_precall() 567 LUA_API int lua_yieldk (lua_State *L, int nresults, int ctx, lua_CFunction k) { in lua_yieldk()
|
D | liolib.c | 178 lua_CFunction cf = p->closef; in aux_close()
|
D | lauxlib.c | 887 lua_CFunction openf, int glb) { in luaL_requiref()
|
/device/linaro/bootloader/edk2/StdLib/Include/Lua/ |
D | lua.h | 56 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);
|
D | lauxlib.h | 25 lua_CFunction func; 99 lua_CFunction openf, int glb); 190 lua_CFunction closef; /* to close stream (NULL for closed streams) */
|