Home | History | Annotate | Download | only in src

Lines Matching refs:record

398 bool LogRecordCompressor::Store(const Vector<const char>& record) {
399 // Check if the record is the same as the last stored one.
402 if (record.length() == curr.length()
403 && strncmp(record.start(), curr.start(), record.length()) == 0) {
410 Vector<char> record_copy = Vector<char>::New(record.length());
411 memcpy(record_copy.start(), record.start(), record.length());
437 // We're moving backwards until we reach the current record.
462 // Record compression results.
472 // Can't compress the previous record. Return as is.