Searched refs:lua_CFunction (Results 1 – 12 of 12) sorted by relevance
/external/syslinux/com32/lua/src/ |
D | loadlib.c | 117 static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym); 145 static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) { in ll_sym() 146 lua_CFunction f = (lua_CFunction)dlsym(lib, sym); in ll_sym() 210 static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) { in ll_sym() 211 lua_CFunction f = (lua_CFunction)GetProcAddress((HMODULE)lib, sym); in ll_sym() 251 static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) { in ll_sym() 257 return (lua_CFunction)module_get_absolute(p->st_value, (struct elf_module *)lib); in ll_sym() 290 static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) { in ll_sym() 347 lua_CFunction f = ll_sym(L, reg, sym); in ll_loadfunc() 753 static const lua_CFunction searchers[] = in createsearcherstable()
|
D | lua.h | 61 typedef int (*lua_CFunction) (lua_State *L); typedef 140 LUA_API lua_CFunction (lua_atpanic) (lua_State *L, lua_CFunction panicf); 179 LUA_API lua_CFunction (lua_tocfunction) (lua_State *L, int idx); 219 LUA_API void (lua_pushcclosure) (lua_State *L, lua_CFunction fn, int n); 257 lua_CFunction k); 263 int ctx, lua_CFunction k); 277 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) */
|
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 | 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 | lbaselib.c | 197 lua_CFunction iter) { in pairsmeta()
|
D | liolib.c | 178 lua_CFunction cf = p->closef; in aux_close()
|
D | lauxlib.c | 889 lua_CFunction openf, int glb) { in luaL_requiref()
|
/external/skqp/src/utils/ |
D | SkLua.cpp | 183 const char key[], lua_CFunction value) { in setfield_function()
|
/external/skia/src/utils/ |
D | SkLua.cpp | 183 const char key[], lua_CFunction value) { in setfield_function()
|