Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
Dcontext.c327 ctx_freelist = (PyContext *)ctx->ctx_weakreflist; in _context_alloc()
328 ctx->ctx_weakreflist = NULL; in _context_alloc()
341 ctx->ctx_weakreflist = NULL; in _context_alloc()
442 if (self->ctx_weakreflist != NULL) { in context_tp_dealloc()
449 self->ctx_weakreflist = (PyObject *)ctx_freelist; in context_tp_dealloc()
672 .tp_weaklistoffset = offsetof(PyContext, ctx_weakreflist),
1227 ctx_freelist = (PyContext *)ctx->ctx_weakreflist; in PyContext_ClearFreeList()
1228 ctx->ctx_weakreflist = NULL; in PyContext_ClearFreeList()
/external/python/cpython3/Include/internal/
Dcontext.h12 PyObject *ctx_weakreflist; member