Searched refs:kTypeValue (Results 1 – 13 of 13) sorted by relevance
/external/chromium_org/third_party/leveldatabase/src/db/ |
D | dbformat_test.cc | 37 ParsedInternalKey decoded("", 0, kTypeValue); in TestKey() 59 TestKey(keys[k], seq[s], kTypeValue); in TEST() 67 ASSERT_EQ(IKey("foo", 100, kTypeValue), in TEST() 68 Shorten(IKey("foo", 100, kTypeValue), in TEST() 69 IKey("foo", 99, kTypeValue))); in TEST() 70 ASSERT_EQ(IKey("foo", 100, kTypeValue), in TEST() 71 Shorten(IKey("foo", 100, kTypeValue), in TEST() 72 IKey("foo", 101, kTypeValue))); in TEST() 73 ASSERT_EQ(IKey("foo", 100, kTypeValue), in TEST() 74 Shorten(IKey("foo", 100, kTypeValue), in TEST() [all …]
|
D | version_edit_test.cc | 29 InternalKey("foo", kBig + 500 + i, kTypeValue), in TEST() 32 edit.SetCompactPointer(i, InternalKey("x", kBig + 900 + i, kTypeValue)); in TEST()
|
D | write_batch.cc | 56 case kTypeValue: in Iterate() 100 rep_.push_back(static_cast<char>(kTypeValue)); in Put() 118 mem_->Add(sequence_, kTypeValue, key, value); in Put()
|
D | dbformat.h | 53 kTypeValue = 0x1 enumerator 61 static const ValueType kValueTypeForSeek = kTypeValue; 185 return (c <= static_cast<unsigned char>(kTypeValue)); in ParseInternalKey()
|
D | version_set_test.cc | 30 f->smallest = InternalKey(smallest, smallest_seq, kTypeValue); in Add() 31 f->largest = InternalKey(largest, largest_seq, kTypeValue); in Add() 36 InternalKey target(key, 100, kTypeValue); in Find()
|
D | write_batch_test.cc | 27 case kTypeValue: in PrintContents()
|
D | memtable.cc | 131 case kTypeValue: { in Get()
|
D | leveldb_main.cc | 160 } else if (key.type == kTypeValue) { in DumpTable()
|
D | db_iter.cc | 187 case kTypeValue: in FindNextUserEntry()
|
D | db_test.cc | 338 InternalKey target(user_key, kMaxSequenceNumber, kTypeValue); in AllEntriesFor() 359 case kTypeValue: in AllEntriesFor() 2091 InternalKey start(MakeKey(2*fnum), 1, kTypeValue); in BM_LogAndApply() 2102 InternalKey start(MakeKey(2*fnum), 1, kTypeValue); in BM_LogAndApply()
|
D | version_set.cc | 280 s->state = (parsed_key.type == kTypeValue) ? kFound : kDeleted; in SaveValue()
|
D | db_impl.cc | 946 (int)ikey.sequence, ikey.type, kTypeValue, drop, in DoCompactionWork()
|
/external/chromium_org/third_party/leveldatabase/src/table/ |
D | table_test.cc | 282 ParsedInternalKey ikey(target, kMaxSequenceNumber, kTypeValue); in Seek() 335 memtable_->Add(seq, kTypeValue, it->first, it->second); in FinishImpl()
|