Searched refs:readOptions (Results 1 - 1 of 1) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/platform/leveldb/
H A DLevelDBDatabase.cpp210 leveldb::ReadOptions readOptions; local
211 readOptions.verify_checksums = true; // FIXME: Disable this if the performance impact is too great.
212 readOptions.snapshot = snapshot ? snapshot->m_snapshot : 0;
214 const leveldb::Status s = m_db->Get(readOptions, makeSlice(key), &result);
317 leveldb::ReadOptions readOptions; local
318 readOptions.verify_checksums = true; // FIXME: Disable this if the performance impact is too great.
319 readOptions.snapshot = snapshot ? snapshot->m_snapshot : 0;
320 std::unique_ptr<leveldb::Iterator> i(m_db->NewIterator(readOptions));

Completed in 63 milliseconds