Home | History | Annotate | Download | only in tcmalloc

Lines Matching full:trace

34         trace = { "size": int(matches.group(1)),
37 result.append(trace)
43 for trace in traces:
44 for frame in trace["frames"]:
61 for trace in traces:
63 for frame in trace["frames"]:
65 trace["frames"] = frames
83 for trace in sorted(traces, key=lambda x: -x["size"]):
84 print "Leak of %d bytes at address %s" % (trace["size"], trace["address"])
85 for frame in trace["frames"]: