Home | History | Annotate | Download | only in tcmalloc

Lines Matching full:tracename

74         var traceName = keys[i];
75 var trace = heapEntry.children[traceName];
82 traceName, isLeaf, trace.currentBytes, trace.currentAllocs);
92 * Returns a <li> for an allocation traceName of size bytes.
94 buildItem_: function(traceName, isLeaf, bytes, allocs) {
97 myItem.id = traceName;
104 if (traceName.length == 0) {
109 traceName = '(here)';
110 } else if (traceName.indexOf('..') == 0) {
113 var lastSlash = traceName.lastIndexOf('/');
115 traceName = 'Task from ' + traceName.substr(lastSlash + 1);
118 traceDiv.textContent = traceName;