Home | History | Annotate | Download | only in tcmalloc

Lines Matching full:trace

19         'trace': '',
26 'trace': 'TestObject::TestMethod ',
41 // Tests multi-level trace stacks.
48 'trace': '',
55 'trace': 'TestObject::TestMethod ',
62 'trace': 'TestObject2::TestMethod2 ',
69 'trace': 'TestObject2::TestMethod2 TestObject3::TestMethod3 ',
84 // Verify the first trace entry stack.
85 var trace = heap.children['TestObject::TestMethod'];
86 assertEquals(2, trace.currentAllocs);
87 assertEquals(200, trace.currentBytes);
89 assertEquals(1, Object.keys(trace.children).length);
90 assertNotNull(trace.children['(here)']);
92 // Verify the second trace entry stack.
93 trace = heap.children['TestObject2::TestMethod2'];
95 assertEquals(8, trace.currentAllocs);
96 assertEquals(800, trace.currentBytes);
98 assertEquals(2, Object.keys(trace.children).length);
99 assertNotNull(trace.children['TestObject3::TestMethod3']);
100 assertNotNull(trace.children['(here)']);
102 trace = trace.children['TestObject3::TestMethod3'];
103 assertEquals(5, trace.currentAllocs);
104 assertEquals(500, trace.currentBytes);
105 assertEquals(1, Object.keys(trace.children).length);