HomeSort by relevance Sort by last modified time
    Searched full:new_traces (Results 1 - 2 of 2) sorted by null

  /external/python/cpython3/Modules/
_tracemalloc.c 528 _Py_hashtable_t *new_traces = (_Py_hashtable_t *)user_data; local
535 return _Py_hashtable_set(new_traces,
546 _Py_hashtable_t *new_traces = NULL; local
550 new_traces = hashtable_new(sizeof(pointer_t),
554 if (new_traces == NULL) {
559 new_traces) < 0)
561 _Py_hashtable_destroy(new_traces);
566 tracemalloc_traces = new_traces;
    [all...]
  /external/python/cpython3/Lib/
tracemalloc.py 433 new_traces = [trace for trace in self.traces._traces
438 new_traces = self.traces._traces.copy()
439 return Snapshot(new_traces, self.traceback_limit)

Completed in 137 milliseconds