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

1 2

  /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_org/base/process/
process_iterator.cc 24 ProcessIterator::ProcessEntries ProcessIterator::Snapshot() {
  /external/chromium_org/components/translate/core/browser/
translate_browser_metrics_unittest.cc 42 Snapshot();
69 Snapshot();
79 Snapshot();
84 void Snapshot() {
  /external/chromium_org/components/translate/core/common/
translate_metrics_unittest.cc 42 Snapshot();
62 Snapshot();
90 Snapshot();
99 Snapshot();
104 Snapshot();
119 Snapshot();
124 void Snapshot() {
  /frameworks/base/libs/hwui/
Snapshot.cpp 19 #include "Snapshot.h"
30 Snapshot::Snapshot()
46 * Copies the specified snapshot/ The specified snapshot is stored as
47 * the previous snapshot.
49 Snapshot::Snapshot(const sp<Snapshot>& s, int saveFlags)
79 if (s->flags & Snapshot::kFlagFboTarget)
    [all...]
Snapshot.h 66 * A snapshot holds information about the current state of the rendering
67 * surface. A snapshot is usually created whenever the user calls save()
68 * and discarded when the user calls restore(). Once a snapshot is created,
71 * Each snapshot has a link to a previous snapshot, indicating the previous
74 class Snapshot: public LightRefBase<Snapshot> {
77 Snapshot();
78 Snapshot(const sp<Snapshot>& s, int saveFlags)
    [all...]
  /external/chromium_org/v8/src/
snapshot.h 13 class Snapshot {
15 // Initialize the VM from the given snapshot file. If snapshot_file is
16 // NULL, use the internal snapshot instead. Returns false if no snapshot
22 // Create a new context using the internal partial snapshot.
25 // Returns whether or not the snapshot is enabled.
28 // Write snapshot to the given file. Returns true if snapshot was written
72 DISALLOW_IMPLICIT_CONSTRUCTORS(Snapshot);
  /frameworks/webview/chromium/tools/
merge_from_chromium.py 430 def Snapshot(svn_revision, root_sha1, release, target, unattended,
432 """Takes a snapshot of the Chromium tree and merges it into Android.
490 """Push the finished snapshot to the Android repository."""
515 parser.epilog = ('Takes a snapshot of the Chromium tree at the specified '
594 if not Snapshot(options.svn_revision, options.sha1, options.release,
  /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/core/java/com/android/server/am/
UriPermission.java 351 * Snapshot of {@link UriPermission} with frozen
354 public static class Snapshot {
362 private Snapshot(UriPermission perm) {
372 public Snapshot snapshot() { method in class:UriPermission
373 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).
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/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...]
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/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...]
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/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/okhttp/src/main/java/com/squareup/okhttp/internal/
DiskLruCache.java 76 * <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
395 * Returns a snapshot of the entry named {@code key}, or null if it doesn't
399 public synchronized Snapshot get(String key) throws IOException {
412 // snapshot. If we opened streams lazily then the streams could come
437 return new Snapshot(key, entry.sequenceNumber, ins, entry.lengths);
454 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...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
maven-repository-metadata-3.2.1.jar 
  /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
1120 Snapshot* snapshot = &snapshots[i]; local
1362 Snapshot* snapshot; local
2349 Snapshot* snapshot = & snapshots_array[i]; local
2371 Snapshot snapshot; local
    [all...]
  /external/glide/third_party/disklrucache/
disklrucache-2.0.2.jar 
  /external/robolectric/lib/main/
maps_v16.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/org.eclipse.osgi/3.9.1.v20130814-1242/
org.eclipse.osgi-3.9.1.v20130814-1242.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.osgi_3.9.1.v20140110-1610.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/org.eclipse.osgi/3.9.0.v20130529-1710/
org.eclipse.osgi-3.9.0.v20130529-1710.jar 

Completed in 3895 milliseconds

1 2