Lines Matching refs:module

6 "is_tracing($module, /)\n"
9 "Return True if the tracemalloc module is tracing Python memory allocations.");
15 _tracemalloc_is_tracing_impl(PyObject *module);
18 _tracemalloc_is_tracing(PyObject *module, PyObject *Py_UNUSED(ignored))
20 return _tracemalloc_is_tracing_impl(module);
24 "clear_traces($module, /)\n"
33 _tracemalloc_clear_traces_impl(PyObject *module);
36 _tracemalloc_clear_traces(PyObject *module, PyObject *Py_UNUSED(ignored))
38 return _tracemalloc_clear_traces_impl(module);
42 "_get_traces($module, /)\n"
50 "Return an empty list if the tracemalloc module is disabled.");
56 _tracemalloc__get_traces_impl(PyObject *module);
59 _tracemalloc__get_traces(PyObject *module, PyObject *Py_UNUSED(ignored))
61 return _tracemalloc__get_traces_impl(module);
65 "_get_object_traceback($module, obj, /)\n"
71 "Return None if the tracemalloc module is disabled or did not\n"
78 "start($module, nframe=1, /)\n"
90 _tracemalloc_start_impl(PyObject *module, int nframe);
93 _tracemalloc_start(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
109 return_value = _tracemalloc_start_impl(module, nframe);
116 "stop($module, /)\n"
127 _tracemalloc_stop_impl(PyObject *module);
130 _tracemalloc_stop(PyObject *module, PyObject *Py_UNUSED(ignored))
132 return _tracemalloc_stop_impl(module);
136 "get_traceback_limit($module, /)\n"
148 _tracemalloc_get_traceback_limit_impl(PyObject *module);
151 _tracemalloc_get_traceback_limit(PyObject *module, PyObject *Py_UNUSED(ignored))
153 return _tracemalloc_get_traceback_limit_impl(module);
157 "get_tracemalloc_memory($module, /)\n"
160 "Get the memory usage in bytes of the tracemalloc module.\n"
168 _tracemalloc_get_tracemalloc_memory_impl(PyObject *module);
171 _tracemalloc_get_tracemalloc_memory(PyObject *module, PyObject *Py_UNUSED(ignored))
173 return _tracemalloc_get_tracemalloc_memory_impl(module);
177 "get_traced_memory($module, /)\n"
188 _tracemalloc_get_traced_memory_impl(PyObject *module);
191 _tracemalloc_get_traced_memory(PyObject *module, PyObject *Py_UNUSED(ignored))
193 return _tracemalloc_get_traced_memory_impl(module);
197 "reset_peak($module, /)\n"
202 "Do nothing if the tracemalloc module is not tracing memory allocations.");
208 _tracemalloc_reset_peak_impl(PyObject *module);
211 _tracemalloc_reset_peak(PyObject *module, PyObject *Py_UNUSED(ignored))
213 return _tracemalloc_reset_peak_impl(module);