HomeSort by relevance Sort by last modified time
    Searched refs:SnapshotImpl (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/leveldatabase/src/db/
snapshot.h 15 // Each SnapshotImpl corresponds to a particular sequence number.
16 class SnapshotImpl : public Snapshot {
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...]
db_impl.cc     [all...]

Completed in 48 milliseconds