Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
Dcontext.c341 ctx_freelist = (PyContext *)ctx->ctx_weakreflist; in _context_alloc()
342 ctx->ctx_weakreflist = NULL; in _context_alloc()
355 ctx->ctx_weakreflist = NULL; in _context_alloc()
456 if (self->ctx_weakreflist != NULL) { in context_tp_dealloc()
463 self->ctx_weakreflist = (PyObject *)ctx_freelist; in context_tp_dealloc()
703 .tp_weaklistoffset = offsetof(PyContext, ctx_weakreflist),
1278 ctx_freelist = (PyContext *)ctx->ctx_weakreflist; in _PyContext_ClearFreeList()
1279 ctx->ctx_weakreflist = NULL; in _PyContext_ClearFreeList()
/external/python/cpython3/Include/internal/
Dpycore_context.h14 PyObject *ctx_weakreflist; member