Lines Matching defs:list
362 /* grab a ProfilerContext out of the free list */
368 /* free list exhausted, allocate a new one */
400 /* put pContext into the free list */
511 PyObject *list;
573 err = PyList_Append(collect->list, info);
583 list of profiler_entry objects.
585 getstats() -> list of profiler_entry objects
598 The calls attribute is either None or a list of
625 collect.list = PyList_New(0);
626 if (collect.list == NULL)
630 Py_DECREF(collect.list);
633 return collect.list;