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

1 2 3

  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/ec2/
test_snapshot.py 5 from boto.ec2.snapshot import Snapshot
60 self.assertIsInstance(response[0], Snapshot)
test_volume.py 3 from boto.ec2.snapshot import Snapshot
192 snapshot_one = Snapshot()
194 snapshot_two = Snapshot()
test_connection.py 14 from boto.ec2.snapshot import Snapshot
    [all...]
  /external/libchrome/base/process/
process_iterator.cc 25 ProcessIterator::ProcessEntries ProcessIterator::Snapshot() {
  /external/v8/src/snapshot/
snapshot.h 8 #include "src/snapshot/partial-serializer.h"
9 #include "src/snapshot/startup-serializer.h"
26 explicit SnapshotData(const Vector<const byte> snapshot)
27 : SerializedData(const_cast<byte*>(snapshot.begin()), snapshot.length()) {
54 class Snapshot : public AllStatic {
56 // Initialize the Isolate from the internal snapshot. Returns false if no
57 // snapshot could be found.
59 // Create a new context using the internal partial snapshot.
71 // To be implemented by the snapshot source
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/
snapshot.py 24 Represents an EC2 Elastic Block Store Snapshot
30 class Snapshot(TaggedEC2Object):
34 super(Snapshot, self).__init__(connection)
47 return 'Snapshot:%s' % self.id
80 Update the data associated with this snapshot by querying EC2.
84 snapshot the update method returns quietly. If
93 raise ValueError('%s is not a valid Snapshot ID' % self.id)
133 Create a new EBS Volume from this Snapshot
140 the size of the snapshot.
connection.py 43 from boto.ec2.snapshot import Snapshot
44 from boto.ec2.snapshot import SnapshotAttribute
318 :param snapshot_id: A snapshot ID for the snapshot to be used
373 snapshot associated with an EBS volume mounted at /dev/sda1
    [all...]
  /frameworks/base/libs/hwui/
Snapshot.cpp 17 #include "Snapshot.h"
28 Snapshot::Snapshot()
44 * Copies the specified snapshot/ The specified snapshot is stored as
45 * the previous snapshot.
47 Snapshot::Snapshot(Snapshot* s, int saveFlags)
74 if (s->flags & Snapshot::kFlagFboTarget)
    [all...]
Snapshot.h 79 * A snapshot holds information about the current state of the rendering
80 * surface. A snapshot is usually created whenever the user calls save()
81 * and discarded when the user calls restore(). Once a snapshot is created,
84 * Each snapshot has a link to a previous snapshot, indicating the previous
87 class Snapshot {
90 Snapshot();
91 Snapshot(Snapshot* s, int saveFlags);
99 * snapshot is restored so must the clip
    [all...]
  /external/chromium-trace/catapult/third_party/Paste/paste/debug/
fsdiff.py 6 Basically this takes a snapshot of a directory, then sees what changes
25 __all__ = ['Diff', 'Snapshot', 'File', 'Dir', 'report_expected_diffs',
90 class Snapshot(IterableUserDict):
93 Represents a snapshot of a set of files. Has a dictionary-like
  /frameworks/base/services/core/java/com/android/server/am/
UriPermission.java 360 * Snapshot of {@link UriPermission} with frozen
363 public static class Snapshot {
371 private Snapshot(UriPermission perm) {
381 public Snapshot snapshot() { method in class:UriPermission
382 return new Snapshot(this);
  /external/libchrome/base/
tracked_objects.cc 120 const DeathDataPhaseSnapshot* snapshot = last_phase_snapshot_; local
121 last_phase_snapshot_ = snapshot->prev;
122 delete snapshot;
183 // snapshot from the previous phase. Resetting other fields. Sample values
187 // is that for incrementable fields, resetting to 0 from the snapshot thread
191 // off-by-little corruptions to be likely fixed at the next snapshot.
205 // sample for the previous phase in the next phase's snapshot because
439 void ThreadData::Snapshot(int current_profiling_phase,
498 // snapshot it (but they lock before copying it).
646 // each snapshot calculate the delta between the snapshot and the previou
    [all...]
  /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 78 * <p>Clients call {@link #get} to read a snapshot of an entry. The read will
161 * a sequence number each time an edit is committed. A snapshot is stale if
417 * Returns a snapshot of the entry named {@code key}, or null if it doesn't
421 public synchronized Snapshot get(String key) throws IOException {
429 Snapshot snapshot = entry.snapshot();
430 if (snapshot == null) return null;
438 return snapshot;
457 return null; // Snapshot is stale
734 Snapshot snapshot = entry.snapshot(); local
    [all...]
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
BaseWrapContentTest.java 138 List<Snapshot> s1 = runScenario(scenario, matchParent, null);
141 List<Snapshot> s2 = runScenario(scenario, wrapContent, s1);
145 Snapshot step1 = s1.get(i);
146 Snapshot step2 = s2.get(i);
151 public List<Snapshot> runScenario(Scenario scenario, ViewGroup.LayoutParams lp,
152 @Nullable List<Snapshot> compareWith)
156 List<Snapshot> result = new ArrayList<>();
175 Snapshot snapshot = takeSnapshot(); local
177 snapshot.assertRvSize()
187 Snapshot snapshot = takeSnapshot(); local
214 Snapshot snapshot = takeSnapshot(); local
238 Snapshot snapshot = new Snapshot(mRecyclerView, mLoggingItemAnimator, local
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-repository-metadata/2.0.9/
maven-repository-metadata-2.0.9.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-repository-metadata/2.2.1/
maven-repository-metadata-2.2.1.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
maven-repository-metadata-3.2.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-repository-metadata/3.3.9/
maven-repository-metadata-3.3.9.jar 
  /external/valgrind/massif/
ms_main.c 41 // - "show me the extra allocations since the last snapshot"
95 snapshot=0
103 snapshot=1
127 - each snapshot specifies an x-axis value and one or more y-axis values.
198 // - Detailed: these record those things in a normal snapshot, plus a very
203 // - Temporary: Massif does a temporary snapshot every so often. The idea
209 // - Permanent: Massif takes a permanent (detailed) snapshot in some
211 // - Peak snapshot: When the memory usage peak is reached, it takes a
212 // snapshot. It keeps this, unless the peak is subsequently exceeded,
213 // in which case it will overwrite the peak snapshot
1109 Snapshot* snapshot = &snapshots[i]; local
1351 Snapshot* snapshot; local
2301 Snapshot* snapshot = & snapshots_array[i]; local
2323 Snapshot snapshot; local
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/perflib/perflib/25.0.0/
perflib-25.0.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/perflib/perflib/25.0.0-alpha5/
perflib-25.0.0-alpha5.jar 
  /prebuilts/gradle-plugin/com/android/tools/perflib/perflib/25.0.0-alpha7/
perflib-25.0.0-alpha7.jar 

Completed in 1795 milliseconds

1 2 3