Lines Matching refs:db_impl
22 DBImpl* db_impl, ColumnFamilyHandle* column_family, const std::string& key, in CheckKeyForConflicts() argument
29 SuperVersion* sv = db_impl->GetAndRefSuperVersion(cfd); in CheckKeyForConflicts()
38 db_impl->GetEarliestMemTableSequenceNumber(sv, true); in CheckKeyForConflicts()
40 result = CheckKey(db_impl, sv, earliest_seq, snap_seq, key, cache_only, in CheckKeyForConflicts()
43 db_impl->ReturnAndCleanupSuperVersion(cfd, sv); in CheckKeyForConflicts()
49 Status TransactionUtil::CheckKey(DBImpl* db_impl, SuperVersion* sv, in CheckKey() argument
119 Status s = db_impl->GetLatestSequenceForKey(sv, key, !need_to_read_sst, in CheckKey()
138 Status TransactionUtil::CheckKeysForConflicts(DBImpl* db_impl, in CheckKeysForConflicts() argument
147 SuperVersion* sv = db_impl->GetAndRefSuperVersion(cf_id); in CheckKeysForConflicts()
155 db_impl->GetEarliestMemTableSequenceNumber(sv, true); in CheckKeysForConflicts()
163 result = CheckKey(db_impl, sv, earliest_seq, key_seq, key, cache_only); in CheckKeysForConflicts()
170 db_impl->ReturnAndCleanupSuperVersion(cf_id, sv); in CheckKeysForConflicts()