HomeSort by relevance Sort by last modified time
    Searched defs:Snapshot (Results 1 - 8 of 8) 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 STATIC_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
68 DISALLOW_IMPLICIT_CONSTRUCTORS(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> {
46 Snapshot(): flags(0), previous(NULL), layer(NULL), fbo(0), invisible(false), empty(false) {
53 * Copies the specified snapshot/ The specified snapshot is stored a
    [all...]
  /external/chromium/net/disk_cache/
stats.cc 267 void Stats::Snapshot(StatsHistogram::StatsSamples* samples) const {
  /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
348 * Returns a snapshot of the entry named {@code key}, or null if it doesn't
352 public synchronized Snapshot get(String key) throws IOException {
366 * snapshot. If we opened streams lazily then the streams could come
385 return new Snapshot(ins);
595 * A snapshot of the values for an entry.
597 public static final class Snapshot implements Closeable {
600 private Snapshot(InputStream[] ins) {
  /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.
203 // - Detailed: these record those things in a normal snapshot, plus a very
208 // - Temporary: Massif does a temporary snapshot every so often. The idea
214 // - Permanent: Massif takes a permanent (detailed) snapshot in some
216 // - Peak snapshot: When the memory usage peak is reached, it takes a
217 // snapshot. It keeps this, unless the peak is subsequently exceeded,
218 // in which case it will overwrite the peak snapshot
1152 Snapshot* snapshot = &snapshots[i]; local
1394 Snapshot* snapshot; local
2337 Snapshot* snapshot = & snapshots[i]; local
    [all...]

Completed in 258 milliseconds