Home | History | Annotate | Download | only in tcmalloc

Lines Matching full:trace

44       // negative or zero. So "total" may be smaller than the largest trace.
60 * @param {Object} heapEntry The current trace heap entry.
75 var trace = heapEntry.children[traceName];
77 if (trace.currentBytes < 100 * 1024)
79 var childCount = Object.keys(trace.children).length;
82 traceName, isLeaf, trace.currentBytes, trace.currentAllocs);
86 myItem.appendChild(this.buildAllocList_(trace, true));
96 myItem.className = 'trace-item';
101 byteDiv.className = 'trace-bytes';
105 // The empty trace name indicates that the allocations occurred at
106 // this trace level, not in a sub-trace. This looks weird as the
119 traceDiv.className = 'trace-name';
134 // Highlight this stack trace in the timeline view.
143 // Compute the full stack trace the user just clicked.
145 while (traceItem.classList.contains('trace-item')) {
151 // Tell the instance that this stack trace is selected.