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

1 2 3 4

  /external/chromium_org/v8/src/
snapshot-empty.cc 32 #include "snapshot.h"
37 const byte Snapshot::data_[] = { 0 };
38 const byte* Snapshot::raw_data_ = NULL;
39 const int Snapshot::size_ = 0;
40 const int Snapshot::raw_size_ = 0;
41 const byte Snapshot::context_data_[] = { 0 };
42 const byte* Snapshot::context_raw_data_ = NULL;
43 const int Snapshot::context_size_ = 0;
44 const int Snapshot::context_raw_size_ = 0;
46 const int Snapshot::new_space_used_ = 0
    [all...]
snapshot.h 36 class Snapshot {
38 // Initialize the VM from the given snapshot file. If snapshot_file is
39 // NULL, use the internal snapshot instead. Returns false if no snapshot
45 // Create a new context using the internal partial snapshot.
48 // Returns whether or not the snapshot is enabled.
51 // Write snapshot to the given file. Returns true if snapshot was written
95 DISALLOW_IMPLICIT_CONSTRUCTORS(Snapshot);
snapshot-common.cc 34 #include "snapshot.h"
78 void Snapshot::ReserveSpaceForLinkedInSnapshot(Deserializer* deserializer) {
90 bool Snapshot::Initialize(const char* snapshot_file) {
114 bool Snapshot::HaveASnapshotToStartFrom() {
119 Handle<Context> Snapshot::NewContextFromSnapshot() {
  /external/v8/src/
snapshot-empty.cc 32 #include "snapshot.h"
37 const byte Snapshot::data_[] = { 0 };
38 const byte* Snapshot::raw_data_ = NULL;
39 const int Snapshot::size_ = 0;
40 const int Snapshot::raw_size_ = 0;
41 const byte Snapshot::context_data_[] = { 0 };
42 const byte* Snapshot::context_raw_data_ = NULL;
43 const int Snapshot::context_size_ = 0;
44 const int Snapshot::context_raw_size_ = 0;
46 const int Snapshot::new_space_used_ = 0
    [all...]
snapshot-common.cc 34 #include "snapshot.h"
40 bool Snapshot::Deserialize(const byte* content, int len) {
47 bool Snapshot::Initialize(const char* snapshot_file) {
63 Handle<Context> Snapshot::NewContextFromSnapshot() {
snapshot.h 36 class Snapshot {
38 // Initialize the VM from the given snapshot file. If snapshot_file is
39 // NULL, use the internal snapshot instead. Returns false if no snapshot
43 // Create a new context using the internal partial snapshot.
46 // Returns whether or not the snapshot is enabled.
49 // Write snapshot to the given file. Returns true if snapshot was written
86 DISALLOW_IMPLICIT_CONSTRUCTORS(Snapshot);
  /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.h 36 * A snapshot holds information about the current state of the rendering
37 * surface. A snapshot is usually created whenever the user calls save()
38 * and discarded when the user calls restore(). Once a snapshot is created,
41 * Each snapshot has a link to a previous snapshot, indicating the previous
44 class Snapshot: public LightRefBase<Snapshot> {
47 Snapshot();
48 Snapshot(const sp<Snapshot>& s, int saveFlags)
    [all...]
Snapshot.cpp 19 #include "Snapshot.h"
30 Snapshot::Snapshot(): flags(0), previous(NULL), layer(NULL), fbo(0),
40 * Copies the specified snapshot/ The specified snapshot is stored as
41 * the previous snapshot.
43 Snapshot::Snapshot(const sp<Snapshot>& s, int saveFlags):
67 if (s->flags & Snapshot::kFlagFboTarget)
    [all...]
SkiaShader.h 31 #include "Snapshot.h"
67 virtual void setupProgram(Program* program, const mat4& modelView, const Snapshot& snapshot,
144 void setupProgram(Program* program, const mat4& modelView, const Snapshot& snapshot,
167 void setupProgram(Program* program, const mat4& modelView, const Snapshot& snapshot,
191 void setupProgram(Program* program, const mat4& modelView, const Snapshot& snapshot,
238 void setupProgram(Program* program, const mat4& modelView, const Snapshot& snapshot
    [all...]
  /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/base/
tracked_objects.h 122 // purposes, we need to construct Snapshot instances for each combination of
124 // lifetimes. We gather such data into a Snapshot instances, so that such
126 // processing). Snapshot instances use pointers to constant portions of the
132 // contributes to it by adding or updating Snapshot instances. DataCollector
134 // accumulate all Snapshot instances.
140 // snapshot instances, and are used to print sub-totals in an about:tasks page.
252 class BASE_API Snapshot {
255 Snapshot(const BirthOnThread& birth_on_thread, const ThreadData& death_thread,
259 Snapshot(const BirthOnThread& birth_on_thread, int count);
276 void Add(const Snapshot& other)
    [all...]
tracked_objects.cc 287 // snapshot it (but they lock before copying it).
541 Snapshot::Snapshot(const BirthOnThread& birth_on_thread,
549 Snapshot::Snapshot(const BirthOnThread& birth_on_thread, int count)
555 const std::string Snapshot::DeathThreadName() const {
561 void Snapshot::Write(std::string* output) const {
569 void Snapshot::Add(const Snapshot& other) {
623 collection_.push_back(Snapshot(*it->first, thread_data, it->second))
    [all...]
process_util.cc 47 ProcessIterator::ProcessEntries ProcessIterator::Snapshot() {
  /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 605 HeapProfileTable::Snapshot* HeapProfileTable::TakeSnapshot() {
606 Snapshot* s = new (alloc_(sizeof(Snapshot))) Snapshot(alloc_, dealloc_);
611 void HeapProfileTable::ReleaseSnapshot(Snapshot* s) {
612 s->~Snapshot();
616 // Callback from TakeSnapshot; adds a single entry to snapshot
618 Snapshot* snapshot) {
619 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/content/browser/indexed_db/leveldb/
leveldb_database.h 22 class Snapshot;
41 const leveldb::Snapshot* snapshot_;
  /external/chromium_org/base/process/
process_iterator.cc 24 ProcessIterator::ProcessEntries ProcessIterator::Snapshot() {
  /external/chromium_org/chrome/browser/translate/
translate_browser_metrics_unittest.cc 42 Snapshot();
69 Snapshot();
79 Snapshot();
84 void Snapshot() {
  /external/chromium_org/chrome/common/translate/
translate_common_metrics_unittest.cc 42 Snapshot();
65 Snapshot();
102 Snapshot();
113 Snapshot();
118 Snapshot();
134 Snapshot();
139 void Snapshot() {
  /external/chromium_org/v8/test/cctest/
test-serialize.cc 39 #include "snapshot.h"
175 PrintF("Unable to write to snapshot file \"%s\"\n", snapshot_file);
265 if (!Snapshot::HaveASnapshotToStartFrom()) {
275 if (!Snapshot::HaveASnapshotToStartFrom()) {
288 CHECK(Snapshot::Initialize(FLAG_testing_serialization_file));
309 // serialize a snapshot in a VM that is booted from a snapshot.
310 if (!Snapshot::HaveASnapshotToStartFrom()) {
324 if (!Snapshot::HaveASnapshotToStartFrom()) {
338 if (!Snapshot::HaveASnapshotToStartFrom())
495 byte* snapshot = ReadBytes(file_name, &snapshot_size); local
606 byte* snapshot = ReadBytes(file_name, &snapshot_size); local
    [all...]

Completed in 601 milliseconds

1 2 3 4