/external/chromium_org/third_party/leveldatabase/src/include/leveldb/ |
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/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/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/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/components/translate/common/ |
translate_metrics_unittest.cc | 42 Snapshot(); 62 Snapshot(); 90 Snapshot(); 99 Snapshot(); 104 Snapshot(); 119 Snapshot(); 124 void Snapshot() {
|
/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_org/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 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);
|
/frameworks/webview/chromium/tools/ |
merge_from_chromium.py | 450 def Snapshot(svn_revision, root_sha1, release, target, unattended, 452 """Takes a snapshot of the Chromium tree and merges it into Android. 510 """Push the finished snapshot to the Android repository.""" 535 parser.epilog = ('Takes a snapshot of the Chromium tree at the specified ' 614 if not Snapshot(options.svn_revision, options.sha1, options.release,
|
/external/chromium/net/disk_cache/ |
stats.cc | 267 void Stats::Snapshot(StatsHistogram::StatsSamples* samples) const {
|
/external/chromium_org/net/disk_cache/ |
stats.cc | 251 void Stats::Snapshot(base::HistogramSamples* samples) const {
|
/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...] |
/frameworks/base/services/java/com/android/server/am/ |
UriPermission.java | 329 * Snapshot of {@link UriPermission} with frozen 332 public static class Snapshot { 340 private Snapshot(UriPermission perm) { 350 public Snapshot snapshot() { method in class:UriPermission 351 return new Snapshot(this);
|
/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...] |
/external/chromium_org/base/ |
tracked_objects.cc | 387 void ThreadData::Snapshot(bool reset_max, ProcessDataSnapshot* process_data) { 415 // snapshot it (but they lock before copying it). 426 // snapshot it (but they lock before copying it).
|
/development/samples/training/bitmapfun/BitmapFun/src/main/java/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 | 78 * <p>Clients call {@link #get} to read a snapshot of an entry. The read will 156 * a sequence number each time an edit is committed. A snapshot is stale if 396 * Returns a snapshot of the entry named {@code key}, or null if it doesn't 400 public synchronized Snapshot get(String key) throws IOException { 413 // snapshot. If we opened streams lazily then the streams could come 438 return new Snapshot(key, entry.sequenceNumber, ins, entry.lengths); 455 return null; // Snapshot is stale. 664 /** A snapshot of the values for an entry. */ 665 public final class Snapshot implements Closeable { 671 private Snapshot(String key, long sequenceNumber, InputStream[] ins, long[] lengths) [all...] |
/external/chromium_org/third_party/leveldatabase/src/db/ |
db_impl.cc | 55 // will never have to service a snapshot below smallest_snapshot. 1082 SequenceNumber snapshot; 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 2372 Snapshot* snapshot = & snapshots_array[i]; local 2393 Snapshot snapshot; local [all...] |
/external/robolectric/lib/main/ |
maps_v16.jar | |