Home
last modified time | relevance | path

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

/src/sys/contrib/openzfs/include/sys/lua/
H A 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 …]
H A Dluaconf.h151 #define LUA_API __declspec(dllexport) macro
153 #define LUA_API __declspec(dllimport) macro
158 #define LUA_API extern macro
164 #define LUALIB_API LUA_API
/src/contrib/lua/src/
H A Dlua.h163 LUA_API lua_State *(lua_newstate) (lua_Alloc f, void *ud);
164 LUA_API void (lua_close) (lua_State *L);
165 LUA_API lua_State *(lua_newthread) (lua_State *L);
166 LUA_API int (lua_closethread) (lua_State *L, lua_State *from);
167 LUA_API int (lua_resetthread) (lua_State *L); /* Deprecated! */
169 LUA_API lua_CFunction (lua_atpanic) (lua_State *L, lua_CFunction panicf);
172 LUA_API lua_Number (lua_version) (lua_State *L);
178 LUA_API int (lua_absindex) (lua_State *L, int idx);
179 LUA_API int (lua_gettop) (lua_State *L);
180 LUA_API void (lua_settop) (lua_State *L, int idx);
[all …]
H A Dlapi.c111 LUA_API int lua_checkstack (lua_State *L, int n) { in lua_checkstack()
128 LUA_API void lua_xmove (lua_State *from, lua_State *to, int n) { in lua_xmove()
144 LUA_API lua_CFunction lua_atpanic (lua_State *L, lua_CFunction panicf) { in lua_atpanic()
154 LUA_API lua_Number lua_version (lua_State *L) { in lua_version()
169 LUA_API int lua_absindex (lua_State *L, int idx) { in lua_absindex()
176 LUA_API int lua_gettop (lua_State *L) { in lua_gettop()
181 LUA_API void lua_settop (lua_State *L, int idx) { in lua_settop()
209 LUA_API void lua_closeslot (lua_State *L, int idx) { in lua_closeslot()
241 LUA_API void lua_rotate (lua_State *L, int idx, int n) { in lua_rotate()
255 LUA_API void lua_copy (lua_State *L, int fromidx, int toidx) { in lua_copy()
[all …]
H A Dluaconf.h290 #define LUA_API __declspec(dllexport) macro
292 #define LUA_API __declspec(dllimport) macro
297 #define LUA_API extern macro
305 #define LUALIB_API LUA_API
306 #define LUAMOD_API LUA_API
H A Dltests.h58 LUA_API Memcontrol l_memcontrol;
99 LUA_API int luaB_opentests (lua_State *L);
101 LUA_API void *debug_realloc (void *ud, void *block,
H A Dlstate.c99 LUA_API int lua_setcstacklimit (lua_State *L, unsigned int limit) { in lua_setcstacklimit()
288 LUA_API lua_State *lua_newthread (lua_State *L) { in lua_newthread()
345 LUA_API int lua_closethread (lua_State *L, lua_State *from) { in lua_closethread()
358 LUA_API int lua_resetthread (lua_State *L) { in lua_resetthread()
363 LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) { in lua_newstate()
419 LUA_API void lua_close (lua_State *L) { in lua_close()
H A Dldebug.c134 LUA_API void lua_sethook (lua_State *L, lua_Hook func, int mask, int count) { in lua_sethook()
148 LUA_API lua_Hook lua_gethook (lua_State *L) { in lua_gethook()
153 LUA_API int lua_gethookmask (lua_State *L) { in lua_gethookmask()
158 LUA_API int lua_gethookcount (lua_State *L) { in lua_gethookcount()
163 LUA_API int lua_getstack (lua_State *L, int level, lua_Debug *ar) { in lua_getstack()
223 LUA_API const char *lua_getlocal (lua_State *L, const lua_Debug *ar, int n) { in lua_getlocal()
245 LUA_API const char *lua_setlocal (lua_State *L, const lua_Debug *ar, int n) { in lua_setlocal()
388 LUA_API int lua_getinfo (lua_State *L, const char *what, lua_Debug *ar) { in lua_getinfo()
H A Dluaconf.h.dist265 @@ LUA_API is a mark for all core API functions.
276 #define LUA_API __declspec(dllexport)
278 #define LUA_API __declspec(dllimport)
283 #define LUA_API extern
291 #define LUALIB_API LUA_API
292 #define LUAMOD_API LUA_API
H A Dldo.c842 LUA_API int lua_resume (lua_State *L, lua_State *from, int nargs, in lua_resume()
877 LUA_API int lua_isyieldable (lua_State *L) { in lua_isyieldable()
882 LUA_API int lua_yieldk (lua_State *L, int nresults, lua_KContext ctx, in lua_yieldk()
/src/sys/contrib/openzfs/module/lua/
H A Dlapi.c89 LUA_API int lua_checkstack (lua_State *L, int size) { in lua_checkstack()
109 LUA_API void lua_xmove (lua_State *from, lua_State *to, int n) { in lua_xmove()
124 LUA_API lua_CFunction lua_atpanic (lua_State *L, lua_CFunction panicf) { in lua_atpanic()
134 LUA_API const lua_Number *lua_version (lua_State *L) { in lua_version()
150 LUA_API int lua_absindex (lua_State *L, int idx) { in lua_absindex()
157 LUA_API int lua_gettop (lua_State *L) { in lua_gettop()
162 LUA_API void lua_settop (lua_State *L, int idx) { in lua_settop()
179 LUA_API void lua_remove (lua_State *L, int idx) { in lua_remove()
190 LUA_API void lua_insert (lua_State *L, int idx) { in lua_insert()
214 LUA_API void lua_replace (lua_State *L, int idx) { in lua_replace()
[all …]
H A Dldebug.c59 LUA_API int lua_sethook (lua_State *L, lua_Hook func, int mask, int count) { in lua_sethook()
74 LUA_API lua_Hook lua_gethook (lua_State *L) { in lua_gethook()
79 LUA_API int lua_gethookmask (lua_State *L) { in lua_gethookmask()
84 LUA_API int lua_gethookcount (lua_State *L) { in lua_gethookcount()
89 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.c624 LUA_API int lua_resume (lua_State *L, lua_State *from, int nargs) { in lua_resume()
656 LUA_API int lua_yieldk (lua_State *L, int nresults, int ctx, lua_CFunction k) { in lua_yieldk()
/src/stand/liblua/
H A Dluaconf.h271 #define LUA_API __declspec(dllexport) macro
273 #define LUA_API __declspec(dllimport) macro
278 #define LUA_API extern macro
286 #define LUALIB_API LUA_API
287 #define LUAMOD_API LUA_API
/src/lib/liblua/
H A Dluaconf.h278 #define LUA_API __declspec(dllexport) macro
280 #define LUA_API __declspec(dllimport) macro
285 #define LUA_API extern macro
293 #define LUALIB_API LUA_API
294 #define LUAMOD_API LUA_API
/src/libexec/flua/libjail/
H A Dlua_jail.c49 #if defined(LUA_VERSION_NUM) && defined(LUA_API)
50 LUA_API int (lua_error) (lua_State *L) __dead2;