Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/fs/zfs/lua/
H A Dlua.h131 LUA_API void (lua_close) (lua_State *L);
132 LUA_API lua_State *(lua_newthread) (lua_State *L);
144 LUA_API int (lua_gettop) (lua_State *L);
191 LUA_API void (lua_arith) (lua_State *L, int op);
204 LUA_API void (lua_pushnil) (lua_State *L);
216 LUA_API int (lua_pushthread) (lua_State *L);
274 LUA_API int (lua_status) (lua_State *L);
300 LUA_API int (lua_error) (lua_State *L);
393 LUA_API lua_Hook (lua_gethook) (lua_State *L);
394 LUA_API int (lua_gethookmask) (lua_State *L);
[all …]
H A Dlapi.c159 LUA_API int lua_gettop (lua_State *L) { in lua_gettop()
164 LUA_API void lua_settop (lua_State *L, int idx) { in lua_settop()
181 LUA_API void lua_remove (lua_State *L, int idx) { in lua_remove()
192 LUA_API void lua_insert (lua_State *L, int idx) { in lua_insert()
248 LUA_API int lua_type (lua_State *L, int idx) { in lua_type()
292 LUA_API void lua_arith (lua_State *L, int op) { in lua_arith()
464 LUA_API void lua_pushnil (lua_State *L) { in lua_pushnil()
592 LUA_API int lua_pushthread (lua_State *L) { in lua_pushthread()
1011 LUA_API int lua_status (lua_State *L) { in lua_status()
1104 LUA_API int lua_error (lua_State *L) { in lua_error()
[all …]
H A Dluaconf.h150 #define LUA_API __declspec(dllexport) macro
152 #define LUA_API __declspec(dllimport) macro
157 #define LUA_API extern macro
163 #define LUALIB_API LUA_API
H A Dldebug.c60 LUA_API int lua_sethook (lua_State *L, lua_Hook func, int mask, int count) { in lua_sethook()
75 LUA_API lua_Hook lua_gethook (lua_State *L) { in lua_gethook()
80 LUA_API int lua_gethookmask (lua_State *L) { in lua_gethookmask()
85 LUA_API int lua_gethookcount (lua_State *L) { in lua_gethookcount()
90 LUA_API int lua_getstack (lua_State *L, int level, lua_Debug *ar) { in lua_getstack()
151 LUA_API const char *lua_getlocal (lua_State *L, const lua_Debug *ar, int n) { in lua_getlocal()
175 LUA_API const char *lua_setlocal (lua_State *L, const lua_Debug *ar, int n) { in lua_setlocal()
278 LUA_API int lua_getinfo (lua_State *L, const char *what, lua_Debug *ar) { in lua_getinfo()
H A Dlstate.c235 LUA_API lua_State *lua_newthread (lua_State *L) { in lua_newthread()
264 LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) { in lua_newstate()
315 LUA_API void lua_close (lua_State *L) { in lua_close()
H A Dldo.c539 LUA_API int lua_resume (lua_State *L, lua_State *from, int nargs) { in lua_resume()
571 LUA_API int lua_yieldk (lua_State *L, int nresults, int ctx, lua_CFunction k) { in lua_yieldk()