| /freebsd-14.2/sys/contrib/openzfs/include/sys/lua/ |
| H A D | lua.h | 131 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 D | luaconf.h | 150 #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
|
| /freebsd-14.2/contrib/lua/src/ |
| H A D | lua.h | 164 LUA_API void (lua_close) (lua_State *L); 165 LUA_API lua_State *(lua_newthread) (lua_State *L); 172 LUA_API lua_Number (lua_version) (lua_State *L); 179 LUA_API int (lua_gettop) (lua_State *L); 255 LUA_API int (lua_pushthread) (lua_State *L); 313 LUA_API int (lua_status) (lua_State *L); 314 LUA_API int (lua_isyieldable) (lua_State *L); 349 LUA_API int (lua_error) (lua_State *L); 469 LUA_API lua_Hook (lua_gethook) (lua_State *L); 470 LUA_API int (lua_gethookmask) (lua_State *L); [all …]
|
| H A D | lapi.c | 111 LUA_API int lua_checkstack (lua_State *L, int n) { in lua_checkstack() 154 LUA_API lua_Number lua_version (lua_State *L) { in lua_version() 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() 284 LUA_API int lua_type (lua_State *L, int idx) { in lua_type() 335 LUA_API void lua_arith (lua_State *L, int op) { in lua_arith() 497 LUA_API void lua_pushnil (lua_State *L) { in lua_pushnil() 624 LUA_API int lua_pushthread (lua_State *L) { in lua_pushthread() 1125 LUA_API int lua_status (lua_State *L) { in lua_status() 1238 LUA_API int lua_error (lua_State *L) { in lua_error() [all …]
|
| H A D | ltests.h | 58 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 D | luaconf.h | 281 #define LUA_API __declspec(dllexport) macro 283 #define LUA_API __declspec(dllimport) macro 288 #define LUA_API extern macro 296 #define LUALIB_API LUA_API 297 #define LUAMOD_API LUA_API
|
| H A D | lstate.c | 99 LUA_API int lua_setcstacklimit (lua_State *L, unsigned int limit) { in lua_setcstacklimit() 286 LUA_API lua_State *lua_newthread (lua_State *L) { in lua_newthread() 342 LUA_API int lua_closethread (lua_State *L, lua_State *from) { in lua_closethread() 355 LUA_API int lua_resetthread (lua_State *L) { in lua_resetthread() 360 LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) { in lua_newstate() 416 LUA_API void lua_close (lua_State *L) { in lua_close()
|
| H 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() 383 LUA_API int lua_getinfo (lua_State *L, const char *what, lua_Debug *ar) { in lua_getinfo()
|
| H A D | luaconf.h.dist | 265 @@ 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 D | ldo.c | 831 LUA_API int lua_resume (lua_State *L, lua_State *from, int nargs, in lua_resume() 866 LUA_API int lua_isyieldable (lua_State *L) { in lua_isyieldable() 871 LUA_API int lua_yieldk (lua_State *L, int nresults, lua_KContext ctx, in lua_yieldk()
|
| /freebsd-14.2/sys/contrib/openzfs/module/lua/ |
| H A D | lapi.c | 156 LUA_API int lua_gettop (lua_State *L) { in lua_gettop() 161 LUA_API void lua_settop (lua_State *L, int idx) { in lua_settop() 178 LUA_API void lua_remove (lua_State *L, int idx) { in lua_remove() 189 LUA_API void lua_insert (lua_State *L, int idx) { in lua_insert() 245 LUA_API int lua_type (lua_State *L, int idx) { in lua_type() 291 LUA_API void lua_arith (lua_State *L, int op) { in lua_arith() 463 LUA_API void lua_pushnil (lua_State *L) { in lua_pushnil() 591 LUA_API int lua_pushthread (lua_State *L) { in lua_pushthread() 1010 LUA_API int lua_status (lua_State *L) { in lua_status() 1103 LUA_API int lua_error (lua_State *L) { in lua_error() [all …]
|
| H A D | ldebug.c | 58 LUA_API int lua_sethook (lua_State *L, lua_Hook func, int mask, int count) { in lua_sethook() 73 LUA_API lua_Hook lua_gethook (lua_State *L) { in lua_gethook() 78 LUA_API int lua_gethookmask (lua_State *L) { in lua_gethookmask() 83 LUA_API int lua_gethookcount (lua_State *L) { in lua_gethookcount() 88 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 | 234 LUA_API lua_State *lua_newthread (lua_State *L) { in lua_newthread() 263 LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) { in lua_newstate() 314 LUA_API void lua_close (lua_State *L) { in lua_close()
|
| H A D | ldo.c | 623 LUA_API int lua_resume (lua_State *L, lua_State *from, int nargs) { in lua_resume() 655 LUA_API int lua_yieldk (lua_State *L, int nresults, int ctx, lua_CFunction k) { in lua_yieldk()
|
| /freebsd-14.2/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-14.2/stand/liblua/ |
| H A D | luaconf.h | 271 #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
|
| /freebsd-14.2/lib/flua/libjail/ |
| H A D | lua_jail.c | 48 #if defined(LUA_VERSION_NUM) && defined(LUA_API) 49 LUA_API int (lua_error) (lua_State *L) __dead2;
|