HomeSort by relevance Sort by last modified time
    Searched refs:finobj (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/skia/third_party/lua/src/
lstate.h 35 ** Objects with finalizers are kept in the list g->finobj.
128 GCObject *finobj; /* list of collectable objects with finalizers */ member in struct:global_State
130 GCObject **sweepfin; /* current position of sweep in list 'finobj' */
lgc.c 836 ** finalization from list 'finobj' to list 'tobefnz' (to be finalized)
840 GCObject **p = &g->finobj;
853 *p = gch(curr)->next; /* remove 'curr' from 'finobj' list */
864 ** search the list to find it) and link it in 'finobj' list.
872 else { /* move 'o' to 'finobj' list */
882 ho->next = g->finobj; /* link it in list 'finobj' */
883 g->finobj = o;
936 g->sweepfin = sweeptolive(L, &g->finobj, &n);
980 lua_assert(g->finobj == NULL)
    [all...]
lstate.c 293 g->finobj = NULL;

Completed in 48 milliseconds