Home
last modified time | relevance | path

Searched refs:finobj (Results 1 – 3 of 3) sorted by relevance

/external/lua/src/
Dlgc.c962 GCObject **p = &g->finobj; in separatetobefnz()
1022 o->next = g->finobj; /* link it in 'finobj' list */ in luaC_checkfinalizer()
1023 g->finobj = o; in luaC_checkfinalizer()
1226 markold(g, g->finobj, g->finobjrold); in youngcollection()
1241 psurvival = sweepgen(L, g, &g->finobj, g->finobjsur, &dummy); in youngcollection()
1246 g->finobjsur = g->finobj; /* all news are survivals */ in youngcollection()
1269 sweep2old(L, &g->finobj); in atomic2gen()
1270 g->finobjrold = g->finobjold1 = g->finobjsur = g->finobj; in atomic2gen()
1305 whitelist(g, g->finobj); in enterinc()
1501 lua_assert(g->finobj == NULL); in luaC_freeallobjects()
[all …]
Dlstate.h274 GCObject *finobj; /* list of collectable objects with finalizers */ member
Dlstate.c415 g->finobj = g->tobefnz = g->fixedgc = NULL; in lua_newstate()