Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
D_tracemalloc.c1296 get_traces_t *get_traces = user_data; in tracemalloc_get_traces_fill() local
1312 tracemalloc_obj = trace_to_pyobject(domain, &trace, get_traces->tracebacks); in tracemalloc_get_traces_fill()
1316 res = PyList_Append(get_traces->list, tracemalloc_obj); in tracemalloc_get_traces_fill()
1353 get_traces_t get_traces; in _tracemalloc__get_traces_impl() local
1356 get_traces.traces = NULL; in _tracemalloc__get_traces_impl()
1357 get_traces.tracebacks = NULL; in _tracemalloc__get_traces_impl()
1358 get_traces.list = PyList_New(0); in _tracemalloc__get_traces_impl()
1359 if (get_traces.list == NULL) in _tracemalloc__get_traces_impl()
1363 return get_traces.list; in _tracemalloc__get_traces_impl()
1367 get_traces.tracebacks = hashtable_new(sizeof(traceback_t *), in _tracemalloc__get_traces_impl()
[all …]