Home
last modified time | relevance | path

Searched refs:ctx_weakreflist (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Python/
Dcontext.c328 ctx_freelist = (PyContext *)ctx->ctx_weakreflist; in _context_alloc()
329 ctx->ctx_weakreflist = NULL; in _context_alloc()
342 ctx->ctx_weakreflist = NULL; in _context_alloc()
443 if (self->ctx_weakreflist != NULL) { in context_tp_dealloc()
450 self->ctx_weakreflist = (PyObject *)ctx_freelist; in context_tp_dealloc()
688 .tp_weaklistoffset = offsetof(PyContext, ctx_weakreflist),
1264 ctx_freelist = (PyContext *)ctx->ctx_weakreflist; in PyContext_ClearFreeList()
1265 ctx->ctx_weakreflist = NULL; in PyContext_ClearFreeList()
/external/python/cpython3/Include/internal/
Dpycore_context.h14 PyObject *ctx_weakreflist; member