Searched defs:SnapshotImpl (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/leveldatabase/src/db/
H A Dsnapshot.h15 // Each SnapshotImpl corresponds to a particular sequence number.
16 class SnapshotImpl : public Snapshot { class in namespace:leveldb
23 // SnapshotImpl is kept in a doubly-linked circular list
24 SnapshotImpl* prev_;
25 SnapshotImpl* next_;
38 SnapshotImpl* oldest() const { assert(!empty()); return list_.next_; }
39 SnapshotImpl* newest() const { assert(!empty()); return list_.prev_; }
41 const SnapshotImpl* New(SequenceNumber seq) {
42 SnapshotImpl* s = new SnapshotImpl;
[all...]

Completed in 82 milliseconds