Home
last modified time | relevance | path

Searched refs:LUA_API (Results 1 – 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/StdLib/Include/Lua/
Dlua.h131 LUA_API lua_State *(lua_newstate) (lua_Alloc f, void *ud);
132 LUA_API void (lua_close) (lua_State *L);
133 LUA_API lua_State *(lua_newthread) (lua_State *L);
135 LUA_API lua_CFunction (lua_atpanic) (lua_State *L, lua_CFunction panicf);
138 LUA_API const lua_Number *(lua_version) (lua_State *L);
144 LUA_API int (lua_absindex) (lua_State *L, int idx);
145 LUA_API int (lua_gettop) (lua_State *L);
146 LUA_API void (lua_settop) (lua_State *L, int idx);
147 LUA_API void (lua_pushvalue) (lua_State *L, int idx);
148 LUA_API void (lua_remove) (lua_State *L, int idx);
[all …]
Dluaconf.h146 #define LUA_API __declspec(dllexport) macro
148 #define LUA_API __declspec(dllimport) macro
153 #define LUA_API extern macro
159 #define LUALIB_API LUA_API
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dlapi.c92 LUA_API int lua_checkstack (lua_State *L, int size) { in lua_checkstack()
112 LUA_API void lua_xmove (lua_State *from, lua_State *to, int n) { in lua_xmove()
127 LUA_API lua_CFunction lua_atpanic (lua_State *L, lua_CFunction panicf) { in lua_atpanic()
137 LUA_API const lua_Number *lua_version (lua_State *L) { in lua_version()
153 LUA_API int lua_absindex (lua_State *L, int idx) { in lua_absindex()
160 LUA_API int lua_gettop (lua_State *L) { in lua_gettop()
165 LUA_API void lua_settop (lua_State *L, int idx) { in lua_settop()
182 LUA_API void lua_remove (lua_State *L, int idx) { in lua_remove()
193 LUA_API void lua_insert (lua_State *L, int idx) { in lua_insert()
217 LUA_API void lua_replace (lua_State *L, int idx) { in lua_replace()
[all …]
Dldebug.c53 LUA_API int lua_sethook (lua_State *L, lua_Hook func, int mask, int count) { in lua_sethook()
68 LUA_API lua_Hook lua_gethook (lua_State *L) { in lua_gethook()
73 LUA_API int lua_gethookmask (lua_State *L) { in lua_gethookmask()
78 LUA_API int lua_gethookcount (lua_State *L) { in lua_gethookcount()
83 LUA_API int lua_getstack (lua_State *L, int level, lua_Debug *ar) { in lua_getstack()
144 LUA_API const char *lua_getlocal (lua_State *L, const lua_Debug *ar, int n) { in lua_getlocal()
166 LUA_API const char *lua_setlocal (lua_State *L, const lua_Debug *ar, int n) { in lua_setlocal()
266 LUA_API int lua_getinfo (lua_State *L, const char *what, lua_Debug *ar) { in lua_getinfo()
Dlstate.c237 LUA_API lua_State *lua_newthread (lua_State *L) { in lua_newthread()
266 LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) { in lua_newstate()
317 LUA_API void lua_close (lua_State *L) { in lua_close()
Dldo.c535 LUA_API int lua_resume (lua_State *L, lua_State *from, int nargs) { in lua_resume()
567 LUA_API int lua_yieldk (lua_State *L, int nresults, int ctx, lua_CFunction k) { in lua_yieldk()