HomeSort by relevance Sort by last modified time
    Searched defs:Snapshot (Results 1 - 12 of 12) sorted by null

  /external/chromium/base/
process_util.cc 47 ProcessIterator::ProcessEntries ProcessIterator::Snapshot() {
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...]
  /external/v8/src/
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);
  /frameworks/base/libs/hwui/
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...]
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...]
  /external/chromium/net/disk_cache/
stats.cc 267 void Stats::Snapshot(StatsHistogram::StatsSamples* samples) const {
  /development/samples/training/bitmapfun/src/com/example/android/bitmapfun/util/
DiskLruCache.java 90 * <p>Clients call {@link #get} to read a snapshot of an entry. The read will
168 * a sequence number each time an edit is committed. A snapshot is stale if
469 * Returns a snapshot of the entry named {@code key}, or null if it doesn't
473 public synchronized Snapshot get(String key) throws IOException {
487 * snapshot. If we opened streams lazily then the streams could come
506 return new Snapshot(key, entry.sequenceNumber, ins);
523 return null; // snapshot is stale
728 * A snapshot of the values for an entry.
730 public final class Snapshot implements Closeable {
735 private Snapshot(String key, long sequenceNumber, InputStream[] ins)
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/
DiskLruCache.java 80 * <p>Clients call {@link #get} to read a snapshot of an entry. The read will
153 * 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 {
373 // snapshot. If we opened streams lazily then the streams could come
391 return new Snapshot(key, entry.sequenceNumber, ins);
408 return null; // snapshot is stale
607 /** A snapshot of the values for an entry. */
608 public final class Snapshot implements Closeable {
613 private Snapshot(String key, long sequenceNumber, InputStream[] ins)
    [all...]
  /libcore/luni/src/main/java/libcore/io/
DiskLruCache.java 79 * <p>Clients call {@link #get} to read a snapshot of an entry. The read will
154 * a sequence number each time an edit is committed. A snapshot is stale if
367 * Returns a snapshot of the entry named {@code key}, or null if it doesn't
371 public synchronized Snapshot get(String key) throws IOException {
385 * snapshot. If we opened streams lazily then the streams could come
404 return new Snapshot(key, entry.sequenceNumber, ins);
421 return null; // snapshot is stale
630 * A snapshot of the values for an entry.
632 public final class Snapshot implements Closeable {
637 private Snapshot(String key, long sequenceNumber, InputStream[] ins)
    [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
2372 Snapshot* snapshot = & snapshots_array[i]; local
2393 Snapshot snapshot; local
    [all...]
  /external/robolectric/lib/main/
maps_v16.jar 

Completed in 4793 milliseconds