Lines Matching defs:GetRecordData
94 size_t GetRecordData(RecordData dataIdx)
135 size_t commitSize = GetRecordData(RecordData::EDEN_TOTAL_COMMIT);
139 double copiedRate = double(GetRecordData(RecordData::EDEN_TOTAL_ALIVE)) / commitSize;
140 double promotedRate = double(GetRecordData(RecordData::EDEN_TOTAL_PROMOTE)) / commitSize;
143 double copiedRate = double(GetRecordData(RecordData::YOUNG_TOTAL_ALIVE)) /
144 GetRecordData(RecordData::YOUNG_TOTAL_COMMIT);
145 double promotedRate = double(GetRecordData(RecordData::YOUNG_TOTAL_PROMOTE)) /
146 GetRecordData(RecordData::YOUNG_TOTAL_COMMIT);
192 return GetRecordData(RecordData::SEMI_COUNT) + GetRecordData(RecordData::YOUNG_COUNT) +
193 GetRecordData(RecordData::OLD_COUNT) + GetRecordData(RecordData::COMPRESS_COUNT) +
194 GetRecordData(RecordData::SHARED_COUNT);