Home
last modified time | relevance | path

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

/third_party/python/Python/
Dcontext.c352 state->freelist = (PyContext *)ctx->ctx_weakreflist; in _context_alloc()
353 ctx->ctx_weakreflist = NULL; in _context_alloc()
366 ctx->ctx_weakreflist = NULL; in _context_alloc()
467 if (self->ctx_weakreflist != NULL) { in context_tp_dealloc()
479 self->ctx_weakreflist = (PyObject *)state->freelist; in context_tp_dealloc()
719 .tp_weaklistoffset = offsetof(PyContext, ctx_weakreflist),
1295 state->freelist = (PyContext *)ctx->ctx_weakreflist; in _PyContext_ClearFreeList()
1296 ctx->ctx_weakreflist = NULL; in _PyContext_ClearFreeList()
/third_party/python/Include/internal/
Dpycore_context.h14 PyObject *ctx_weakreflist; member