| /freebsd-13.1/sys/contrib/openzfs/include/sys/lua/ |
| H A D | lua.h | 132 LUA_API void (lua_close) (lua_State *L); 133 LUA_API lua_State *(lua_newthread) (lua_State *L); 145 LUA_API int (lua_gettop) (lua_State *L); 192 LUA_API void (lua_arith) (lua_State *L, int op); 205 LUA_API void (lua_pushnil) (lua_State *L); 217 LUA_API int (lua_pushthread) (lua_State *L); 275 LUA_API int (lua_status) (lua_State *L); 301 LUA_API int (lua_error) (lua_State *L); 394 LUA_API lua_Hook (lua_gethook) (lua_State *L); 395 LUA_API int (lua_gethookmask) (lua_State *L); [all …]
|
| H A D | luaconf.h | 151 #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
|
| /freebsd-13.1/contrib/lua/src/ |
| H 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); 463 LUA_API lua_Hook (lua_gethook) (lua_State *L); 464 LUA_API int (lua_gethookmask) (lua_State *L); [all …]
|
| H A D | lapi.c | 98 LUA_API int lua_checkstack (lua_State *L, int n) { in lua_checkstack() 146 LUA_API lua_Number lua_version (lua_State *L) { in lua_version() 168 LUA_API int lua_gettop (lua_State *L) { in lua_gettop() 173 LUA_API void lua_settop (lua_State *L, int idx) { in lua_settop() 260 LUA_API int lua_type (lua_State *L, int idx) { in lua_type() 311 LUA_API void lua_arith (lua_State *L, int op) { in lua_arith() 473 LUA_API void lua_pushnil (lua_State *L) { in lua_pushnil() 600 LUA_API int lua_pushthread (lua_State *L) { in lua_pushthread() 1093 LUA_API int lua_status (lua_State *L) { in lua_status() 1205 LUA_API int lua_error (lua_State *L) { in lua_error() [all …]
|
| H A D | ldebug.c | 135 LUA_API void lua_sethook (lua_State *L, lua_Hook func, int mask, int count) { in lua_sethook() 149 LUA_API lua_Hook lua_gethook (lua_State *L) { in lua_gethook() 154 LUA_API int lua_gethookmask (lua_State *L) { in lua_gethookmask() 159 LUA_API int lua_gethookcount (lua_State *L) { in lua_gethookcount() 164 LUA_API int lua_getstack (lua_State *L, int level, lua_Debug *ar) { in lua_getstack() 224 LUA_API const char *lua_getlocal (lua_State *L, const lua_Debug *ar, int n) { in lua_getlocal() 246 LUA_API const char *lua_setlocal (lua_State *L, const lua_Debug *ar, int n) { in lua_setlocal() 386 LUA_API int lua_getinfo (lua_State *L, const char *what, lua_Debug *ar) { in lua_getinfo()
|
| H 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() 349 LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) { in lua_newstate() 405 LUA_API void lua_close (lua_State *L) { in lua_close()
|
| H A D | luaconf.h.dist | 260 @@ LUA_API is a mark for all core API functions. 271 #define LUA_API __declspec(dllexport) 273 #define LUA_API __declspec(dllimport) 278 #define LUA_API extern 286 #define LUALIB_API LUA_API 287 #define LUAMOD_API LUA_API
|
| H A D | ldo.c | 701 LUA_API int lua_resume (lua_State *L, lua_State *from, int nargs, in lua_resume() 736 LUA_API int lua_isyieldable (lua_State *L) { in lua_isyieldable() 741 LUA_API int lua_yieldk (lua_State *L, int nresults, lua_KContext ctx, in lua_yieldk()
|
| /freebsd-13.1/sys/contrib/openzfs/module/lua/ |
| H A D | lapi.c | 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() 246 LUA_API int lua_type (lua_State *L, int idx) { in lua_type() 290 LUA_API void lua_arith (lua_State *L, int op) { in lua_arith() 462 LUA_API void lua_pushnil (lua_State *L) { in lua_pushnil() 590 LUA_API int lua_pushthread (lua_State *L) { in lua_pushthread() 1009 LUA_API int lua_status (lua_State *L) { in lua_status() 1102 LUA_API int lua_error (lua_State *L) { in lua_error() [all …]
|
| H A D | ldebug.c | 59 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() 150 LUA_API const char *lua_getlocal (lua_State *L, const lua_Debug *ar, int n) { in lua_getlocal() 174 LUA_API const char *lua_setlocal (lua_State *L, const lua_Debug *ar, int n) { in lua_setlocal() 277 LUA_API int lua_getinfo (lua_State *L, const char *what, lua_Debug *ar) { in lua_getinfo()
|
| H A D | lstate.c | 235 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 D | ldo.c | 609 LUA_API int lua_resume (lua_State *L, lua_State *from, int nargs) { in lua_resume() 641 LUA_API int lua_yieldk (lua_State *L, int nresults, int ctx, lua_CFunction k) { in lua_yieldk()
|
| /freebsd-13.1/lib/liblua/ |
| H A D | luaconf.h | 278 #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
|
| /freebsd-13.1/stand/liblua/ |
| H A D | luaconf.h | 272 #define LUA_API __declspec(dllexport) macro 274 #define LUA_API __declspec(dllimport) macro 279 #define LUA_API extern macro 287 #define LUALIB_API LUA_API 288 #define LUAMOD_API LUA_API
|
| /freebsd-13.1/lib/flua/libjail/ |
| H A D | lua_jail.c | 52 #if defined(LUA_VERSION_NUM) && defined(LUA_API) 53 LUA_API int (lua_error) (lua_State *L) __dead2;
|