HomeSort by relevance Sort by last modified time
    Searched defs:heap_profile (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/tcmalloc/vendor/src/
heap-profiler.cc 172 static HeapProfileTable* heap_profile = NULL; // the heap profile table variable
189 heap_profile->RefreshMMapData();
191 bytes_written = heap_profile->FillOrderedProfile(buf, buflen - 1);
193 heap_profile->ClearMMapData();
263 const HeapProfileTable::Stats& total = heap_profile->total();
306 heap_profile->RecordAlloc(ptr, bytes, depth, stack);
315 heap_profile->RecordFree(ptr);
444 heap_profile = new(ProfilerMalloc(sizeof(HeapProfileTable)))
493 heap_profile->~HeapProfileTable();
494 ProfilerFree(heap_profile);
    [all...]
heap-checker.cc 269 static HeapProfileTable* heap_profile = NULL; variable
350 // heap_profile map of the heap when we get to it
381 // record at any time. We maintain this by checking with the heap_profile map
588 heap_profile->RecordAlloc(ptr, size, depth, stack);
590 heap_profile->MarkAsIgnored(ptr);
602 if (heap_checker_on) heap_profile->RecordFree(ptr);
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
heap-profiler.cc 222 static HeapProfileTable* heap_profile = NULL; // the heap profile table variable
244 HeapProfileTable::Stats const stats = heap_profile->total();
246 bytes_written = heap_profile->FillOrderedProfile(buf, buflen - 1);
249 RAW_DCHECK(stats.Equivalent(heap_profile->total()), "");
319 heap_profile->DumpTypeStatistics(file_name);
334 const HeapProfileTable::Stats& total = heap_profile->total();
385 heap_profile->RecordAlloc(ptr, bytes, depth, stack);
394 heap_profile->RecordFree(ptr);
524 heap_profile = new(ProfilerMalloc(sizeof(HeapProfileTable)))
536 DeepHeapProfile(heap_profile, prefix, DeepHeapProfile::PageFrameType
    [all...]
heap-checker.cc 269 static HeapProfileTable* heap_profile = NULL; variable
350 // heap_profile map of the heap when we get to it
381 // record at any time. We maintain this by checking with the heap_profile map
588 heap_profile->RecordAlloc(ptr, size, depth, stack);
590 heap_profile->MarkAsIgnored(ptr);
602 if (heap_checker_on) heap_profile->RecordFree(ptr);
    [all...]

Completed in 370 milliseconds