Searched refs:LUA_API (Results 1 – 6 of 6) sorted by relevance
/l4re-core-master/lua/lib/contrib/src/ |
A D | lua.h | 154 LUA_API void (lua_close) (lua_State *L); 155 LUA_API lua_State *(lua_newthread) (lua_State *L); 161 LUA_API lua_Number (lua_version) (lua_State *L); 168 LUA_API int (lua_gettop) (lua_State *L); 244 LUA_API int (lua_pushthread) (lua_State *L); 302 LUA_API int (lua_status) (lua_State *L); 303 LUA_API int (lua_isyieldable) (lua_State *L); 338 LUA_API int (lua_error) (lua_State *L); 464 LUA_API lua_Hook (lua_gethook) (lua_State *L); 465 LUA_API int (lua_gethookmask) (lua_State *L); [all …]
|
A D | lapi.c | 99 LUA_API int lua_checkstack (lua_State *L, int n) { in lua_checkstack() 147 LUA_API lua_Number lua_version (lua_State *L) { in lua_version() 169 LUA_API int lua_gettop (lua_State *L) { in lua_gettop() 174 LUA_API void lua_settop (lua_State *L, int idx) { in lua_settop() 278 LUA_API int lua_type (lua_State *L, int idx) { in lua_type() 329 LUA_API void lua_arith (lua_State *L, int op) { in lua_arith() 491 LUA_API void lua_pushnil (lua_State *L) { in lua_pushnil() 618 LUA_API int lua_pushthread (lua_State *L) { in lua_pushthread() 1118 LUA_API int lua_status (lua_State *L) { in lua_status() 1230 LUA_API int lua_error (lua_State *L) { in lua_error() [all …]
|
A D | luaconf.h | 275 #define LUA_API __declspec(dllexport) macro 277 #define LUA_API __declspec(dllimport) macro 282 #define LUA_API extern macro 290 #define LUALIB_API LUA_API 291 #define LUAMOD_API LUA_API
|
A D | ldebug.c | 131 LUA_API void lua_sethook (lua_State *L, lua_Hook func, int mask, int count) { in lua_sethook() 145 LUA_API lua_Hook lua_gethook (lua_State *L) { in lua_gethook() 150 LUA_API int lua_gethookmask (lua_State *L) { in lua_gethookmask() 155 LUA_API int lua_gethookcount (lua_State *L) { in lua_gethookcount() 160 LUA_API int lua_getstack (lua_State *L, int level, lua_Debug *ar) { in lua_getstack() 220 LUA_API const char *lua_getlocal (lua_State *L, const lua_Debug *ar, int n) { in lua_getlocal() 242 LUA_API const char *lua_setlocal (lua_State *L, const lua_Debug *ar, int n) { in lua_setlocal() 382 LUA_API int lua_getinfo (lua_State *L, const char *what, lua_Debug *ar) { in lua_getinfo()
|
A D | lstate.c | 99 LUA_API int lua_setcstacklimit (lua_State *L, unsigned int limit) { in lua_setcstacklimit() 285 LUA_API lua_State *lua_newthread (lua_State *L) { in lua_newthread() 345 LUA_API int lua_resetthread (lua_State *L) { in lua_resetthread() 354 LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) { in lua_newstate() 410 LUA_API void lua_close (lua_State *L) { in lua_close()
|
A D | ldo.c | 773 LUA_API int lua_resume (lua_State *L, lua_State *from, int nargs, in lua_resume() 805 LUA_API int lua_isyieldable (lua_State *L) { in lua_isyieldable() 810 LUA_API int lua_yieldk (lua_State *L, int nresults, lua_KContext ctx, in lua_yieldk()
|
Completed in 18 milliseconds