Home | History | Annotate | Download | only in leveldb

Lines Matching refs:got_value

45   std::string got_value;
60 status = leveldb->Get(key, &got_value, &found);
63 EXPECT_EQ(value, got_value);
82 status = leveldb->Get(key, &got_value, &found);
92 std::string got_value;
114 status = transaction->Get(key, &got_value, &found);
117 EXPECT_EQ(comparator.Compare(got_value, old_value), 0);
120 status = leveldb->Get(key, &got_value, &found);
123 EXPECT_EQ(comparator.Compare(got_value, new_value), 0);
131 status = leveldb->Get(added_key, &got_value, &found);
134 EXPECT_EQ(comparator.Compare(got_value, added_value), 0);
136 status = transaction->Get(added_key, &got_value, &found);
145 status = transaction->Get(another_key, &got_value, &found);
148 EXPECT_EQ(comparator.Compare(got_value, another_value), 0);
209 std::string got_value;
232 status = leveldb->Get(key1, &got_value, &found);
235 EXPECT_EQ(value1, got_value);
237 status = leveldb->Get(key2, &got_value, &found);
240 EXPECT_EQ(value3, got_value);