Searched defs:snapshot (Results 1 - 25 of 64) sorted by relevance

123

/external/v8/src/profiler/
H A Dheap-snapshot-generator-inl.h8 #include "src/profiler/heap-snapshot-generator.h"
15 return &snapshot()->entries()[from_index()];
20 return snapshot()->profiler()->isolate();
24 HeapSnapshot* HeapGraphEdge::snapshot() const { function in class:v8::internal::HeapGraphEdge
25 return to_entry_->snapshot();
H A Dheap-profiler.cc10 #include "src/profiler/heap-snapshot-generator-inl.h"
40 void HeapProfiler::RemoveSnapshot(HeapSnapshot* snapshot) { argument
41 snapshots_.RemoveElement(snapshot);
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/rds/
H A Ddbinstance.py232 def snapshot(self, snapshot_id): member in class:DBInstance
234 Create a new DB snapshot of this DBInstance.
279 a final db snapshot is created before the instance is
280 deleted. If True, no snapshot is created. If False, a
281 snapshot is created before deleting the instance.
284 :param final_snapshot_id: If a final snapshot is requested, this
285 is the identifier used for that snapshot.
/external/v8/src/
H A Dstartup-data-util.cc108 char* snapshot; local
110 RelativePath(&snapshot, directory_path, "snapshot_blob.bin"));
112 free(snapshot);
/external/autotest/client/deps/webgl_mpd/src/resources/
H A DJ3DI.js564 // HTML element with the passed id. Once created you call snapshot at the end
591 Framerate.prototype.snapshot = function()
/external/guava/guava/src/com/google/common/cache/
H A DAbstractCache.java196 * Returns a snapshot of this counter's values. Note that this may be an inconsistent view, as
199 CacheStats snapshot(); method in interface:AbstractCache.StatsCounter
255 public CacheStats snapshot() { method in class:AbstractCache.SimpleStatsCounter
269 CacheStats otherStats = other.snapshot();
/external/guava/guava/src/com/google/common/collect/
H A DConcurrentHashMultiset.java178 return snapshot().toArray();
182 return snapshot().toArray(array);
189 private List<E> snapshot() { method in class:ConcurrentHashMultiset
543 return snapshot().toArray();
547 return snapshot().toArray(array);
550 private List<Multiset.Entry<E>> snapshot() { method in class:ConcurrentHashMultiset.EntrySet
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
H A DClassTable.java158 public void snapshot() method in class:ClassTable
170 snapshot();
216 snapshot();
H A DDecompTable.java134 private void snapshot() method in class:DecompTable
145 snapshot();
/external/libchrome/base/metrics/
H A Dhistogram_unittest.cc338 scoped_ptr<SampleVector> snapshot = histogram->SnapshotSampleVector(); local
340 histogram->FindCorruption(*snapshot));
341 EXPECT_EQ(2, snapshot->redundant_count());
342 EXPECT_EQ(2, snapshot->TotalCount());
344 snapshot->counts_[3] += 100; // Sample count won't match redundant count.
346 histogram->FindCorruption(*snapshot));
347 snapshot->counts_[2] -= 200;
349 histogram->FindCorruption(*snapshot));
352 snapshot->counts_[1] += 100;
354 histogram->FindCorruption(*snapshot));
361 scoped_ptr<SampleVector> snapshot = histogram->SnapshotSampleVector(); local
[all...]
H A Dstatistics_recorder_unittest.cc161 StatisticsRecorder::Histograms snapshot; local
162 StatisticsRecorder::GetSnapshot("Test", &snapshot);
163 EXPECT_EQ(3u, snapshot.size());
165 snapshot.clear();
166 StatisticsRecorder::GetSnapshot("1", &snapshot);
167 EXPECT_EQ(1u, snapshot.size());
169 snapshot.clear();
170 StatisticsRecorder::GetSnapshot("hello", &snapshot);
171 EXPECT_EQ(0u, snapshot.size());
H A Dsparse_histogram.cc73 scoped_ptr<SampleMap> snapshot(new SampleMap(name_hash()));
76 snapshot->Add(samples_);
77 return std::move(snapshot);
136 scoped_ptr<HistogramSamples> snapshot = SnapshotSamples(); local
137 Count total_count = snapshot->TotalCount();
149 scoped_ptr<SampleCountIterator> it = snapshot->Iterator();
164 it = snapshot->Iterator();
H A Dstatistics_recorder.cc133 Histograms snapshot;
134 GetSnapshot(query, &snapshot);
135 for (const HistogramBase* histogram : snapshot) {
151 Histograms snapshot; local
152 GetSnapshot(query, &snapshot);
153 for (const HistogramBase* histogram : snapshot) {
171 Histograms snapshot; local
172 GetSnapshot(query, &snapshot);
175 for (const HistogramBase* histogram : snapshot) {
291 Histograms* snapshot) {
290 GetSnapshot(const std::string& query, Histograms* snapshot) argument
[all...]
H A Dhistogram.cc412 scoped_ptr<SampleVector> snapshot = SnapshotSampleVector(); local
413 Count sample_count = snapshot->TotalCount();
415 WriteAsciiHeader(*snapshot, sample_count, output);
421 max_size = GetPeakBucketSize(*snapshot);
426 while (0 == snapshot->GetCountAtIndex(largest_non_empty_bucket)) {
435 if (snapshot->GetCountAtIndex(i)) {
446 Count current = snapshot->GetCountAtIndex(i);
455 0 == snapshot->GetCountAtIndex(i + 1)) {
457 0 == snapshot->GetCountAtIndex(i + 1)) {
525 scoped_ptr<SampleVector> snapshot local
[all...]
/external/ppp/pppd/include/
H A Dpcap-int.h70 int snapshot; member in struct:pcap
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/manage/
H A Dvolume.py132 snapshot = self.get_snapshots()[-1]
133 return self.create_from_snapshot(name, snapshot, size)
135 def create_from_snapshot(self, name, snapshot, size=None):
143 ebs_volume = ec2.create_volume(size, self.zone_name, snapshot)
191 for snapshot in rs:
192 if snapshot.volume_id in all_vols:
193 if snapshot.progress == '100%':
194 snapshot.date = boto.utils.parse_ts(snapshot.start_time)
195 snapshot
300 def snapshot(self): member in class:Volume
[all...]
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAbstractService.java140 private volatile StateSnapshot snapshot = new StateSnapshot(NEW); field in class:AbstractService
172 snapshot = new StateSnapshot(STARTING);
194 snapshot = new StateSnapshot(TERMINATED);
198 snapshot = new StateSnapshot(STARTING, true, null);
202 snapshot = new StateSnapshot(STOPPING);
302 // We have to examine the internal state of the snapshot here to properly handle the stop
304 if (snapshot.state != STARTING) {
306 "Cannot notifyStarted() when the service is " + snapshot.state);
311 if (snapshot.shutdownWhenStartupFinishes) {
312 snapshot
[all...]
/external/guava/guava-tests/benchmark/com/google/common/collect/
H A DConcurrentHashMultisetBenchmark.java214 return snapshot().toArray();
218 return snapshot().toArray(array);
225 private List<E> snapshot() { method in class:ConcurrentHashMultisetBenchmark.OldConcurrentHashMultiset
484 return snapshot().toArray();
488 return snapshot().toArray(array);
491 private List<Multiset.Entry<E>> snapshot() { method in class:ConcurrentHashMultisetBenchmark.OldConcurrentHashMultiset.EntrySet
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DLocalList.java351 RegisterSpecSet snapshot =
353 state.snapshot(insn.getAddress(), snapshot);
529 * Sets the local state at the given address to the given snapshot.
536 public void snapshot(int address, RegisterSpecSet specs) { method in class:LocalList.MakeState
538 System.err.printf("%04x snapshot %s\n", address, specs);
561 System.err.printf("%04x snapshot done\n", address);
/external/libchrome/base/
H A Dtracked_objects_unittest.cc347 DeathDataSnapshot snapshot; local
348 snapshot.count = 10;
349 snapshot.run_duration_sum = 100;
350 snapshot.run_duration_max = 50;
351 snapshot.run_duration_sample = 25;
352 snapshot.queue_duration_sum = 200;
353 snapshot.queue_duration_max = 101;
354 snapshot.queue_duration_sample = 26;
365 const DeathDataSnapshot& delta = snapshot.Delta(older_snapshot);
/external/libweave/src/
H A Dcomponent_manager_unittest.cc1210 auto snapshot = manager_.GetAndClearRecordedStateChanges(); local
1211 EXPECT_EQ(manager_.GetLastStateChangeId(), snapshot.update_id);
1212 ASSERT_EQ(4u, snapshot.state_changes.size());
1214 EXPECT_EQ("comp1", snapshot.state_changes[0].component);
1215 EXPECT_EQ(time1, snapshot.state_changes[0].timestamp);
1217 *snapshot.state_changes[0].changed_properties);
1219 EXPECT_EQ("comp2", snapshot.state_changes[1].component);
1220 EXPECT_EQ(time1, snapshot.state_changes[1].timestamp);
1222 *snapshot.state_changes[1].changed_properties);
1224 EXPECT_EQ("comp1", snapshot
[all...]
H A Dcomponent_manager_impl.cc454 StateSnapshot snapshot; local
455 snapshot.update_id = GetLastStateChangeId();
464 std::back_inserter(snapshot.state_changes), conv);
472 std::sort(snapshot.state_changes.begin(), snapshot.state_changes.end(), pred);
474 return snapshot;
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DCache.java181 DiskLruCache.Snapshot snapshot;
184 snapshot = cache.get(key);
185 if (snapshot == null) {
194 entry = new Entry(snapshot.getSource(ENTRY_METADATA));
196 Util.closeQuietly(snapshot);
200 Response response = entry.response(request, snapshot);
253 DiskLruCache.Snapshot snapshot = ((CacheResponseBody) cached.body()).snapshot;
256 editor = snapshot.edit(); // Returns null if snapshot i
659 response(Request request, DiskLruCache.Snapshot snapshot) argument
693 private final DiskLruCache.Snapshot snapshot; field in class:Cache.CacheResponseBody
698 CacheResponseBody(final DiskLruCache.Snapshot snapshot, String contentType, String contentLength) argument
[all...]
/external/libchrome/base/trace_event/
H A Dtrace_event.h901 template <typename ArgType> void snapshot(ArgType snapshot) { argument
902 TRACE_EVENT_OBJECT_SNAPSHOT_WITH_ID(category_group_, name_, id_, snapshot);
/external/libpcap/
H A Dpcap-int.h86 * Maximum snapshot length.
100 * memory; some applications might use the snapshot length in a
187 int snapshot; member in struct:pcap

Completed in 796 milliseconds

123