Home
last modified time | relevance | path

Searched refs:lua_gc (Results 1 – 9 of 9) sorted by relevance

/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dlua.c106 if (status != 0) lua_gc(L, LUA_GCCOLLECT, 0); in docall()
347 lua_gc(L, LUA_GCSTOP, 0); /* stop collector during initialization */ in pmain()
349 lua_gc(L, LUA_GCRESTART, 0); in pmain()
H A Dlua.h230 LUA_API int (lua_gc) (lua_State *L, int what, int data); variable
291 #define lua_getgccount(L) lua_gc(L, LUA_GCCOUNT, 0)
H A Dlbaselib.c200 int res = lua_gc(L, optsnum[o], ex); in luaB_collectgarbage()
203 int b = lua_gc(L, LUA_GCCOUNTB, 0); in luaB_collectgarbage()
H A Dlapi.c899 LUA_API int lua_gc (lua_State *L, int what, int data) { in lua_gc() function
/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dlbaselib.c151 int res = lua_gc(L, o, ex); in luaB_collectgarbage()
154 int b = lua_gc(L, LUA_GCCOUNTB, 0); in luaB_collectgarbage()
H A Dlapi.c1018 LUA_API int lua_gc (lua_State *L, int what, int data) { in lua_gc() function
/f-stack/freebsd/contrib/openzfs/include/sys/lua/
H A Dlua.h294 LUA_API int (lua_gc) (lua_State *L, int what, int data); variable
/f-stack/app/redis-5.0.5/src/
H A Dserver.c1169 size_t lua_memory = lua_gc(server.lua,LUA_GCCOUNT,0)*1024LL; in serverCron()
3238 long long memory_lua = (long long)lua_gc(server.lua,LUA_GCCOUNT,0)*1024; in genRedisInfoString()
H A Dscripting.c1398 lua_gc(lua,LUA_GCSTEP,LUA_GC_CYCLE_PERIOD); in evalGenericCommand()