Home
last modified time | relevance | path

Searched refs:object_statistics (Results 1 – 4 of 4) sorted by relevance

/third_party/node/deps/v8/src/heap/cppgc/
Dheap-statistics-collector.cc77 std::vector<HeapStatistics::ObjectStatsEntry>& object_statistics, in RecordObjectType() argument
84 if (object_statistics.size() <= type_index) { in RecordObjectType()
85 object_statistics.resize(type_index + 1); in RecordObjectType()
87 object_statistics[type_index].allocated_bytes += object_size; in RecordObjectType()
88 object_statistics[type_index].object_count++; in RecordObjectType()
179 current_page_stats_->object_statistics, &header, in VisitHeapObjectHeader()
/third_party/node/deps/v8/include/cppgc/
Dheap-statistics.h60 std::vector<ObjectStatsEntry> object_statistics; member
/third_party/node/deps/v8/include/
Dv8-isolate.h784 bool GetHeapObjectStatisticsAtLastGC(HeapObjectStatistics* object_statistics,
794 bool GetHeapCodeAndMetadataStatistics(HeapCodeStatistics* object_statistics);
/third_party/node/deps/v8/src/api/
Dapi.cc8965 HeapObjectStatistics* object_statistics, size_t type_index) { in GetHeapObjectStatisticsAtLastGC() argument
8966 if (!object_statistics) return false; in GetHeapObjectStatisticsAtLastGC()
8984 object_statistics->object_type_ = object_type; in GetHeapObjectStatisticsAtLastGC()
8985 object_statistics->object_sub_type_ = object_sub_type; in GetHeapObjectStatisticsAtLastGC()
8986 object_statistics->object_count_ = object_count; in GetHeapObjectStatisticsAtLastGC()
8987 object_statistics->object_size_ = object_size; in GetHeapObjectStatisticsAtLastGC()