Home | History | Annotate | Download | only in Lib

Lines Matching refs:Trace

190             return tuple(Frame(trace) for trace in self._frames[index])
231 did not trace the allocation of the object.
240 class Trace:
242 Trace of a memory block.
246 def __init__(self, trace):
247 # trace is a tuple: (domain: int, size: int, traceback: tuple).
249 self._trace = trace
273 return ("<Trace domain=%s size=%s, traceback=%r>"
280 # traces is a tuple of trace tuples: see Trace constructor
288 return tuple(Trace(trace) for trace in self._traces[index])
290 return Trace(self._traces[index])
292 def __contains__(self, trace):
293 return trace._trace in self._traces
313 def _match(self, trace):
354 def _match(self, trace):
355 domain, size, traceback = trace
374 def _match(self, trace):
375 domain, size, traceback = trace
385 # traces is a tuple of trace tuples: see _Traces constructor for
405 def _filter_trace(self, include_filters, exclude_filters, trace):
407 if not any(trace_filter._match(trace)
411 if any(not trace_filter._match(trace)
433 new_traces = [trace for trace in self.traces._traces
436 trace)]
451 for trace in self.traces._traces:
452 domain, size, trace_traceback = trace
472 for trace in self.traces._traces:
473 domain, size, trace_traceback = trace