Home | History | Annotate | Download | only in storage

Lines Matching full:m_version

1778     int64_t version() const { return m_version; }
1779 void setVersion(int64_t version) { m_version = version; }
1782 LevelDBRecordIdentifier(const Vector<char>& primaryKey, int64_t version) : m_primaryKey(primaryKey), m_version(version) { ASSERT(!primaryKey.isEmpty()); }
1783 LevelDBRecordIdentifier() : m_primaryKey(), m_version(-1) {}
1786 int64_t m_version;