HomeSort by relevance Sort by last modified time
    Searched refs:Snapshot (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /external/chromium_org/v8/src/
snapshot-empty.cc 9 #include "src/snapshot.h"
14 const byte Snapshot::data_[] = { 0 };
15 const byte* Snapshot::raw_data_ = NULL;
16 const int Snapshot::size_ = 0;
17 const int Snapshot::raw_size_ = 0;
18 const byte Snapshot::context_data_[] = { 0 };
19 const byte* Snapshot::context_raw_data_ = NULL;
20 const int Snapshot::context_size_ = 0;
21 const int Snapshot::context_raw_size_ = 0;
23 const int Snapshot::new_space_used_ = 0
    [all...]
snapshot.h 13 class Snapshot {
15 // Initialize the VM from the given snapshot file. If snapshot_file is
16 // NULL, use the internal snapshot instead. Returns false if no snapshot
22 // Create a new context using the internal partial snapshot.
25 // Returns whether or not the snapshot is enabled.
28 // Write snapshot to the given file. Returns true if snapshot was written
72 DISALLOW_IMPLICIT_CONSTRUCTORS(Snapshot);
snapshot-common.cc 11 #include "src/snapshot.h"
55 void Snapshot::ReserveSpaceForLinkedInSnapshot(Deserializer* deserializer) {
67 bool Snapshot::Initialize(const char* snapshot_file) {
92 PrintF("[Snapshot loading and deserialization took %0.3f ms]\n", ms);
100 bool Snapshot::HaveASnapshotToStartFrom() {
105 Handle<Context> Snapshot::NewContextFromSnapshot(Isolate* isolate) {
  /external/chromium_org/gpu/command_buffer/service/
gpu_state_tracer.cc 19 class Snapshot : public base::debug::ConvertableToTraceFormat {
21 static scoped_refptr<Snapshot> Create(const ContextState* state);
30 explicit Snapshot(const ContextState* state);
31 virtual ~Snapshot() {}
38 DISALLOW_COPY_AND_ASSIGN(Snapshot);
43 Snapshot::Snapshot(const ContextState* state) : state_(state) {}
45 scoped_refptr<Snapshot> Snapshot::Create(const ContextState* state) {
46 return scoped_refptr<Snapshot>(new Snapshot(state))
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkSnapshot.h 19 DECLARE_MEMBER_INFO(Snapshot);
  /external/skia/src/animator/
SkSnapshot.h 19 DECLARE_MEMBER_INFO(Snapshot);
  /frameworks/base/libs/hwui/
Snapshot.cpp 19 #include "Snapshot.h"
30 Snapshot::Snapshot()
46 * Copies the specified snapshot/ The specified snapshot is stored as
47 * the previous snapshot.
49 Snapshot::Snapshot(const sp<Snapshot>& s, int saveFlags)
79 if (s->flags & Snapshot::kFlagFboTarget)
    [all...]
StatefulBaseRenderer.h 23 #include "Snapshot.h"
31 * Manages the Snapshot stack, implementing matrix, save/restore, and clipping methods in the
51 * Initialize the first snapshot, computing the projection matrix, and stores the dimensions of
116 // allows subclasses to control what value is stored in snapshot's fbo field in
127 * Called just after a restore has occurred. The 'removed' snapshot popped from the stack,
128 * 'restored' snapshot has become the top/current.
132 virtual void onSnapshotRestored(const Snapshot& removed, const Snapshot& restored) {};
140 inline const Snapshot* currentSnapshot() const {
144 inline const Snapshot* firstSnapshot() const
    [all...]
Snapshot.h 66 * A snapshot holds information about the current state of the rendering
67 * surface. A snapshot is usually created whenever the user calls save()
68 * and discarded when the user calls restore(). Once a snapshot is created,
71 * Each snapshot has a link to a previous snapshot, indicating the previous
74 class Snapshot: public LightRefBase<Snapshot> {
77 Snapshot();
78 Snapshot(const sp<Snapshot>& s, int saveFlags)
    [all...]
StatefulBaseRenderer.cpp 33 , mFirstSnapshot(new Snapshot)
39 mSnapshot = new Snapshot(mFirstSnapshot,
53 // create a temporary 1st snapshot, so old snapshots are released,
56 mSnapshot = new Snapshot(mFirstSnapshot,
72 mSnapshot = new Snapshot(mSnapshot, flags);
84 sp<Snapshot> toRemove = mSnapshot;
85 sp<Snapshot> toRestore = mSnapshot->previous;
  /external/chromium_org/third_party/leveldatabase/src/include/leveldb/
options.h 17 class Snapshot;
154 // If "snapshot" is non-NULL, read as of the supplied snapshot
156 // not have been released). If "snapshot" is NULL, use an impliicit
157 // snapshot of the state at the beginning of this read operation.
159 const Snapshot* snapshot; member in struct:leveldb::ReadOptions
164 snapshot(NULL) {
db.h 25 // A Snapshot is an immutable object and can therefore be safely
27 class Snapshot {
29 virtual ~Snapshot();
95 // this handle will all observe a stable snapshot of the current DB
97 // snapshot is no longer needed.
98 virtual const Snapshot* GetSnapshot() = 0;
100 // Release a previously acquired snapshot. The caller must not
101 // use "snapshot" after this call.
102 virtual void ReleaseSnapshot(const Snapshot* snapshot) = 0
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
heap-profile-table.h 190 // Return a snapshot of the current contents of *this.
193 // the snapshot is discarded by calling ReleaseSnapshot().
194 class Snapshot;
195 Snapshot* TakeSnapshot();
197 // Release a previously taken snapshot. snapshot must not
199 void ReleaseSnapshot(Snapshot* snapshot);
201 // Return a snapshot of every non-live, non-ignored object in *this.
205 Snapshot* NonLiveSnapshot(Snapshot* base)
    [all...]
heap-profile-table.cc 608 HeapProfileTable::Snapshot* HeapProfileTable::TakeSnapshot() {
609 Snapshot* s = new (alloc_(sizeof(Snapshot))) Snapshot(alloc_, dealloc_);
614 void HeapProfileTable::ReleaseSnapshot(Snapshot* s) {
615 s->~Snapshot();
619 // Callback from TakeSnapshot; adds a single entry to snapshot
621 Snapshot* snapshot) {
622 snapshot->Add(ptr, *v)
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
heap-profile-table.h 173 // Return a snapshot of the current contents of *this.
176 // the snapshot is discarded by calling ReleaseSnapshot().
177 class Snapshot;
178 Snapshot* TakeSnapshot();
180 // Release a previously taken snapshot. snapshot must not
182 void ReleaseSnapshot(Snapshot* snapshot);
184 // Return a snapshot of every non-live, non-ignored object in *this.
188 Snapshot* NonLiveSnapshot(Snapshot* base)
    [all...]
heap-profile-table.cc 550 HeapProfileTable::Snapshot* HeapProfileTable::TakeSnapshot() {
551 Snapshot* s = new (alloc_(sizeof(Snapshot))) Snapshot(alloc_, dealloc_);
556 void HeapProfileTable::ReleaseSnapshot(Snapshot* s) {
557 s->~Snapshot();
561 // Callback from TakeSnapshot; adds a single entry to snapshot
563 Snapshot* snapshot) {
564 snapshot->Add(ptr, *v)
    [all...]
  /external/chromium_org/base/process/
process_iterator.cc 24 ProcessIterator::ProcessEntries ProcessIterator::Snapshot() {
  /external/chromium_org/components/translate/core/browser/
translate_browser_metrics_unittest.cc 42 Snapshot();
69 Snapshot();
79 Snapshot();
84 void Snapshot() {
  /external/chromium_org/content/browser/indexed_db/leveldb/
leveldb_database.h 22 class Snapshot;
41 const leveldb::Snapshot* snapshot_;
  /external/chromium_org/components/translate/core/common/
translate_metrics_unittest.cc 42 Snapshot();
62 Snapshot();
90 Snapshot();
99 Snapshot();
104 Snapshot();
119 Snapshot();
124 void Snapshot() {
  /external/chromium_org/v8/test/cctest/
test-serialize.cc 42 #include "src/snapshot.h"
171 PrintF("Unable to write to snapshot file \"%s\"\n", snapshot_file);
264 if (!Snapshot::HaveASnapshotToStartFrom()) {
274 if (!Snapshot::HaveASnapshotToStartFrom()) {
287 CHECK(Snapshot::Initialize(FLAG_testing_serialization_file));
307 // serialize a snapshot in a VM that is booted from a snapshot.
308 if (!Snapshot::HaveASnapshotToStartFrom()) {
322 if (!Snapshot::HaveASnapshotToStartFrom()) {
336 if (!Snapshot::HaveASnapshotToStartFrom())
493 byte* snapshot = ReadBytes(file_name, &snapshot_size); local
605 byte* snapshot = ReadBytes(file_name, &snapshot_size); local
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
snapshot.h 16 class SnapshotImpl : public Snapshot {
db_impl.h 12 #include "db/snapshot.h"
39 virtual const Snapshot* GetSnapshot();
40 virtual void ReleaseSnapshot(const Snapshot* snapshot);
  /external/chromium_org/base/
tracked_objects_unittest.cc 194 ThreadData::Snapshot(false, &process_data);
262 DeathDataSnapshot snapshot(*data);
263 EXPECT_EQ(2, snapshot.count);
264 EXPECT_EQ(2 * run_ms, snapshot.run_duration_sum);
265 EXPECT_EQ(run_ms, snapshot.run_duration_max);
266 EXPECT_EQ(run_ms, snapshot.run_duration_sample);
267 EXPECT_EQ(2 * queue_ms, snapshot.queue_duration_sum);
268 EXPECT_EQ(queue_ms, snapshot.queue_duration_max);
269 EXPECT_EQ(queue_ms, snapshot.queue_duration_sample);
282 ThreadData::Snapshot(false, &process_data)
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
UriPermission.java 351 * Snapshot of {@link UriPermission} with frozen
354 public static class Snapshot {
362 private Snapshot(UriPermission perm) {
372 public Snapshot snapshot() { method in class:UriPermission
373 return new Snapshot(this);

Completed in 4516 milliseconds

1 2 3 4