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

1 2

  /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/skia/src/animator/
SkSnapshot.h 19 DECLARE_MEMBER_INFO(Snapshot);
SkDisplayType.cpp 188 CASE_NEW(Snapshot);
343 CASE_GET_INFO(Snapshot);
510 { "snapshot", SkType_Snapshot INIT_BOOL_FIELDS },
  /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 17 #include "Snapshot.h"
28 Snapshot::Snapshot(): flags(0), previous(NULL), layer(NULL), fbo(0),
38 * Copies the specified snapshot/ The specified snapshot is stored as
39 * the previous snapshot.
41 Snapshot::Snapshot(const sp<Snapshot>& s, int saveFlags):
71 if (s->flags & Snapshot::kFlagFboTarget)
    [all...]
SkiaShader.h 31 #include "Snapshot.h"
65 virtual void setupProgram(Program* program, const mat4& modelView, const Snapshot& snapshot,
86 const Snapshot& snapshot) {
149 void setupProgram(Program* program, const mat4& modelView, const Snapshot& snapshot,
151 void updateTransforms(Program* program, const mat4& modelView, const Snapshot& snapshot);
180 void setupProgram(Program* program, const mat4& modelView, const Snapshot& snapshot
    [all...]
OpenGLRenderer.h 42 #include "Snapshot.h"
165 * Compose the layer defined in the current snapshot with the layer
166 * defined by the previous snapshot.
168 * The current snapshot *must* be a layer (flag kFlagIsLayer set.)
170 * @param curent The current snapshot containing the layer to compose
171 * @param previous The previous snapshot to compose the current layer with
173 virtual void composeLayer(sp<Snapshot> current, sp<Snapshot> previous);
181 * Returns the current snapshot.
183 sp<Snapshot> getSnapshot()
    [all...]
SkiaShader.cpp 69 void SkiaShader::setupProgram(Program* program, const mat4& modelView, const Snapshot& snapshot,
125 const Snapshot& snapshot, GLuint* textureUnit) {
155 const Snapshot& snapshot) {
219 const Snapshot& snapshot, GLuint* textureUnit) {
235 const Snapshot& snapshot) {
    [all...]
Android.mk 29 Snapshot.cpp \
OpenGLRenderer.cpp 119 mFirstSnapshot = new Snapshot;
174 mSnapshot = new Snapshot(mFirstSnapshot,
249 sp<Snapshot> snapshot = (mSnapshot != NULL) ? mSnapshot : mFirstSnapshot; local
251 glViewport(0, 0, snapshot->viewport.getWidth(), snapshot->viewport.getHeight());
259 glBindFramebuffer(GL_FRAMEBUFFER, snapshot->fbo);
384 mSnapshot = new Snapshot(mSnapshot, flags);
389 bool restoreClip = mSnapshot->flags & Snapshot::kFlagClipSet;
390 bool restoreLayer = mSnapshot->flags & Snapshot::kFlagIsLayer
    [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/net/disk_cache/
stats.h 77 // to take a snapshot of the data_sizes_ as the histogram data.
79 void Snapshot(StatsHistogram::StatsSamples* samples) const;
stats_histogram.cc 78 stats_->Snapshot(&my_sample);
88 const SampleSet& snapshot) const {
stats.cc 267 void Stats::Snapshot(StatsHistogram::StatsSamples* samples) const {
  /libcore/luni/src/test/java/libcore/io/
DiskLruCacheTest.java 80 DiskLruCache.Snapshot snapshot = cache.get("k1"); local
81 assertEquals("ABC", snapshot.getString(0));
82 assertEquals("DE", snapshot.getString(1));
93 DiskLruCache.Snapshot snapshot = cache.get("k1"); local
94 assertEquals("A", snapshot.getString(0));
95 assertEquals("B", snapshot.getString(1));
96 snapshot.close();
144 DiskLruCache.Snapshot k1Snapshot = cache.get("k1")
373 DiskLruCache.Snapshot snapshot = cache.get("k1"); local
519 DiskLruCache.Snapshot snapshot = cache.get("A"); local
578 DiskLruCache.Snapshot snapshot = cache.get("A"); local
607 DiskLruCache.Snapshot snapshot = cache.get("A"); local
616 DiskLruCache.Snapshot snapshot = cache.get("A"); local
628 DiskLruCache.Snapshot snapshot = cache.get("A"); local
639 DiskLruCache.Snapshot snapshot = cache.get("A"); local
650 DiskLruCache.Snapshot snapshot = cache.get("A"); local
789 DiskLruCache.Snapshot snapshot = cache.get(key); local
801 DiskLruCache.Snapshot snapshot = cache.get(key); local
    [all...]
  /external/v8/test/cctest/
test-serialize.cc 38 #include "snapshot.h"
176 PrintF("Unable to write to snapshot file \"%s\"\n", snapshot_file);
272 CHECK(Snapshot::Initialize(FLAG_testing_serialization_file));
291 // serialize a snapshot in a VM that is booted from a snapshot.
292 if (!Snapshot::IsEnabled()) {
305 if (!Snapshot::IsEnabled()) {
318 if (!Snapshot::IsEnabled()) {
335 if (!Snapshot::IsEnabled()) {
435 if (!Snapshot::IsEnabled())
447 byte* snapshot = ReadBytes(file_name, &snapshot_size); local
532 byte* snapshot = ReadBytes(file_name, &snapshot_size); local
    [all...]
test-mark-compact.cc 41 #include "snapshot.h"
536 if (v8::internal::Snapshot::IsEnabled()) {
542 if (v8::internal::Snapshot::IsEnabled()) {
  /libcore/luni/src/main/java/libcore/net/http/
HttpResponseCache.java 96 DiskLruCache.Snapshot snapshot; local
99 snapshot = cache.get(key);
100 if (snapshot == null) {
103 entry = new Entry(new BufferedInputStream(snapshot.getInputStream(ENTRY_METADATA)));
110 snapshot.close();
115 ? new EntrySecureCacheResponse(entry, snapshot)
116 : new EntryCacheResponse(entry, snapshot);
187 DiskLruCache.Snapshot snapshot = (conditionalCacheHit instanceof EntryCacheResponse local
    [all...]
  /external/valgrind/main/massif/
ms_main.c 44 // - "show me the extra allocations since the last snapshot"
101 snapshot=0
109 snapshot=1
133 - each snapshot specifies an x-axis value and one or more y-axis values.
204 // - Detailed: these record those things in a normal snapshot, plus a very
209 // - Temporary: Massif does a temporary snapshot every so often. The idea
215 // - Permanent: Massif takes a permanent (detailed) snapshot in some
217 // - Peak snapshot: When the memory usage peak is reached, it takes a
218 // snapshot. It keeps this, unless the peak is subsequently exceeded,
219 // in which case it will overwrite the peak snapshot
1148 Snapshot* snapshot = &snapshots[i]; local
1390 Snapshot* snapshot; local
2359 Snapshot* snapshot = & snapshots_array[i]; local
2380 Snapshot snapshot; local
    [all...]
  /libcore/luni/src/main/java/libcore/io/
DiskLruCache.java 80 * <p>Clients call {@link #get} to read a snapshot of an entry. The read will
155 * a sequence number each time an edit is committed. A snapshot is stale if
356 * Returns a snapshot of the entry named {@code key}, or null if it doesn't
360 public synchronized Snapshot get(String key) throws IOException {
374 * snapshot. If we opened streams lazily then the streams could come
393 return new Snapshot(key, entry.sequenceNumber, ins);
410 return null; // snapshot is stale
614 * A snapshot of the values for an entry.
616 public final class Snapshot implements Closeable {
621 private Snapshot(String key, long sequenceNumber, InputStream[] ins)
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginProxy.cpp 154 PassRefPtr<ShareableBitmap> PluginProxy::snapshot() function in class:WebKit::PluginProxy
157 m_connection->connection()->sendSync(Messages::PluginControllerProxy::Snapshot(), Messages::PluginControllerProxy::Snapshot::Reply(snapshotStoreHandle), m_pluginInstanceID);

Completed in 776 milliseconds

1 2