Home
last modified time | relevance | path

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

/rocksdb-6.9/db/
Dlog_reader.h129 kEof = kMaxRecordType + 1,
134 kBadRecord = kMaxRecordType + 2,
136 kBadHeader = kMaxRecordType + 3,
138 kOldRecord = kMaxRecordType + 4,
140 kBadRecordLen = kMaxRecordType + 5,
142 kBadRecordChecksum = kMaxRecordType + 6,
Dlog_format.h36 static const int kMaxRecordType = kRecyclableLastType; variable
Dlog_writer.h105 uint32_t type_crc_[kMaxRecordType + 1];
Dlog_writer.cc28 for (int i = 0; i <= kMaxRecordType; i++) { in Writer()