HomeSort by relevance Sort by last modified time
    Searched defs: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...]
  /external/chromium_org/v8/src/
snapshot-external.cc 17 struct SnapshotImpl {
41 static SnapshotImpl* snapshot_impl_ = NULL;
113 snapshot_impl_ = new SnapshotImpl;

Completed in 61 milliseconds