Home | History | Annotate | Download | only in src

Lines Matching full:info

588 void HeapProfiler::CollectStats(HeapObject* obj, HistogramInfo* info) {
592 info[type].increment_number(1);
593 info[type].increment_bytes(obj->Size());
620 HistogramInfo info[LAST_TYPE+1];
621 #define DEF_TYPE_NAME(name) info[name].set_name(#name);
629 CollectStats(obj, info);
638 string_number += info[type].number(); \
639 string_bytes += info[type].bytes();
647 if (info[i].bytes() > 0) {
648 LOG(HeapSampleItemEvent(info[i].name(), info[i].number(),
649 info[i].bytes()));