Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
D_tracemalloc.c523 _Py_hashtable_t *new_traces = (_Py_hashtable_t *)user_data; in tracemalloc_use_domain_cb() local
530 return _Py_hashtable_set(new_traces, in tracemalloc_use_domain_cb()
541 _Py_hashtable_t *new_traces = NULL; in tracemalloc_use_domain() local
545 new_traces = hashtable_new(sizeof(pointer_t), in tracemalloc_use_domain()
549 if (new_traces == NULL) { in tracemalloc_use_domain()
554 new_traces) < 0) in tracemalloc_use_domain()
556 _Py_hashtable_destroy(new_traces); in tracemalloc_use_domain()
561 tracemalloc_traces = new_traces; in tracemalloc_use_domain()
/external/python/cpython3/Lib/
Dtracemalloc.py443 new_traces = [trace for trace in self.traces._traces
448 new_traces = self.traces._traces.copy()
449 return Snapshot(new_traces, self.traceback_limit)