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

12

/external/webkit/Source/WebCore/bindings/v8/
H A DScriptHeapSnapshot.h53 static PassRefPtr<ScriptHeapSnapshot> create(const v8::HeapSnapshot* snapshot) argument
55 return adoptRef(new ScriptHeapSnapshot(snapshot));
64 ScriptHeapSnapshot(const v8::HeapSnapshot* snapshot) argument
65 : m_snapshot(snapshot)
H A DScriptProfiler.cpp95 const v8::HeapSnapshot* snapshot = 0; local
98 snapshot = v8::HeapProfiler::TakeSnapshot(v8String(title), v8::HeapSnapshot::kFull, &adapter);
100 snapshot = v8::HeapProfiler::TakeSnapshot(v8String(title), v8::HeapSnapshot::kAggregated);
101 return snapshot ? ScriptHeapSnapshot::create(snapshot) : 0;
/external/webkit/Source/WebCore/loader/icon/
H A DPageURLRecord.cpp58 PageURLSnapshot PageURLRecord::snapshot(bool forDeletion) const function in class:WebCore::PageURLRecord
H A DIconRecord.cpp98 IconSnapshot IconRecord::snapshot(bool forDeletion) const function in class:WebCore::IconRecord
/external/chromium/chrome/browser/chromeos/
H A Dwm_overview_favicon.cc34 void WmOverviewFavicon::Init(WmOverviewSnapshot* snapshot) { argument
46 GTK_WIDGET(snapshot->GetNativeView())));
H A Dwm_overview_title.cc62 WmOverviewSnapshot* snapshot) {
101 GTK_WIDGET(snapshot->GetNativeView())));
61 Init(const gfx::Size& size, WmOverviewSnapshot* snapshot) argument
H A Dwm_overview_controller.cc40 // We will start the timer upon successfully retrieving a new snapshot, or if
41 // for some reason the current snapshot is still pending (while Chrome is
45 // This is the size of the web page when we lay it out for a snapshot.
52 // that a snapshot can take up.
96 // Mark the given snapshot as dirty, and start the delay timer.
102 // Update the first "dirty" snapshot, which is ordered after (excluding)
103 // the snapshot whose index is given by |start_from|; When |start_from| is
105 // Return the index of the snapshot which is actually updated; -1 if there
144 // Inserts a new snapshot, initialized from the model, at the given
148 // Removes the snapshot a
166 WmOverviewSnapshot* snapshot; // Not owned member in struct:chromeos::BrowserListener::SnapshotNode
[all...]
/external/chromium/chrome/browser/
H A Dprocess_info_snapshot_mac_unittest.cc27 ProcessInfoSnapshot snapshot; local
28 ASSERT_TRUE(snapshot.Sample(pid_list));
31 ASSERT_TRUE(snapshot.GetProcInfo(1, &proc_info));
42 EXPECT_TRUE(snapshot.GetCommittedKBytesOfPID(1, &usage));
44 EXPECT_TRUE(snapshot.GetWorkingSetKBytesOfPID(1, &ws_usage));
47 EXPECT_FALSE(snapshot.GetProcInfo(2, &proc_info));
50 EXPECT_FALSE(snapshot.GetProcInfo(2, &proc_info));
53 snapshot.Reset();
54 EXPECT_FALSE(snapshot.GetProcInfo(1, &proc_info));
68 ProcessInfoSnapshot snapshot; local
124 ProcessInfoSnapshot snapshot; local
[all...]
/external/okhttp/src/main/java/libcore/util/
H A DBasicLruCache.java112 public synchronized final Map<K, V> snapshot() { method in class:BasicLruCache
/external/chromium/base/metrics/
H A Dhistogram_unittest.cc340 Histogram::SampleSet snapshot; local
341 histogram->SnapshotSample(&snapshot);
343 EXPECT_EQ(0, histogram->FindCorruption(snapshot)); // No default corruption.
344 EXPECT_EQ(2, snapshot.redundant_count());
346 snapshot.counts_[3] += 100; // Sample count won't match redundant count.
347 EXPECT_EQ(Histogram::COUNT_LOW_ERROR, histogram->FindCorruption(snapshot));
348 snapshot.counts_[2] -= 200;
349 EXPECT_EQ(Histogram::COUNT_HIGH_ERROR, histogram->FindCorruption(snapshot));
352 snapshot.counts_[1] += 100;
353 EXPECT_EQ(0, histogram->FindCorruption(snapshot));
360 Histogram::SampleSet snapshot; local
[all...]
/external/chromium/chrome/browser/sync/engine/
H A Dall_status.cc48 const sessions::SyncSessionSnapshot* snapshot = event.snapshot; local
49 status.unsynced_count += static_cast<int>(snapshot->unsynced_count);
50 status.conflicting_count += snapshot->errors.num_conflicting_commits;
53 status.conflicting_count += snapshot->num_conflicting_updates;
55 status.syncing |= snapshot->syncer_status.syncing;
56 status.syncing = snapshot->has_more_to_sync && snapshot->is_silenced;
57 status.initial_sync_ended |= snapshot->is_share_usable;
58 status.syncer_stuck |= snapshot
[all...]
H A Dsyncer_types.h109 const sessions::SyncSessionSnapshot* snapshot; member in struct:browser_sync::SyncEngineEvent
/external/webkit/Source/WebCore/page/
H A DFrameActionScheduler.cpp93 Vector< OwnPtr<FrameAction> > snapshot; local
94 m_scheduledActions.swap(snapshot);
96 for (Vector< OwnPtr<FrameAction> >::iterator i = snapshot.begin(); i != snapshot.end(); ++i)
/external/chromium/chrome/browser/sync/
H A Djs_sync_manager_observer.cc52 const sessions::SyncSessionSnapshot* snapshot) {
54 return_args.Append(snapshot->ToValue());
51 OnSyncCycleCompleted( const sessions::SyncSessionSnapshot* snapshot) argument
/external/guava/guava/src/com/google/common/cache/
H A DAbstractCache.java192 * Returns a snapshot of this counter's values. Note that this may be an inconsistent view, as
195 public CacheStats snapshot(); method in interface:AbstractCache.StatsCounter
246 public CacheStats snapshot() { method in class:AbstractCache.SimpleStatsCounter
260 CacheStats otherStats = other.snapshot();
/external/guava/guava/src/com/google/common/collect/
H A DConcurrentHashMultiset.java187 return snapshot().toArray();
191 return snapshot().toArray(array);
198 private List<E> snapshot() { method in class:ConcurrentHashMultiset
537 return snapshot().toArray();
541 return snapshot().toArray(array);
544 private List<Multiset.Entry<E>> snapshot() { method in class:ConcurrentHashMultiset.EntrySet
/external/ppp/pppd/include/
H A Dpcap-int.h70 int snapshot; member in struct:pcap
/external/qemu/
H A Dblockdev.c153 int snapshot = 0; local
180 snapshot = qemu_opt_get_bool(opts, "snapshot", 0);
467 if (snapshot) {
468 /* always use cache=unsafe with snapshot */
/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/okhttp/src/main/java/libcore/net/http/
H A DHttpResponseCache.java100 DiskLruCache.Snapshot snapshot;
103 snapshot = cache.get(key);
104 if (snapshot == null) {
107 entry = new Entry(new BufferedInputStream(snapshot.getInputStream(ENTRY_METADATA)));
114 snapshot.close();
119 ? new EntrySecureCacheResponse(entry, snapshot)
120 : new EntryCacheResponse(entry, snapshot);
192 DiskLruCache.Snapshot snapshot = (conditionalCacheHit instanceof EntryCacheResponse)
193 ? ((EntryCacheResponse) conditionalCacheHit).snapshot
194 : ((EntrySecureCacheResponse) conditionalCacheHit).snapshot;
518 newBodyInputStream(final DiskLruCache.Snapshot snapshot) argument
529 private final DiskLruCache.Snapshot snapshot; field in class:HttpResponseCache.EntryCacheResponse
532 EntryCacheResponse(Entry entry, DiskLruCache.Snapshot snapshot) argument
549 private final DiskLruCache.Snapshot snapshot; field in class:HttpResponseCache.EntrySecureCacheResponse
552 EntrySecureCacheResponse(Entry entry, DiskLruCache.Snapshot snapshot) argument
[all...]
/external/webkit/Source/WebCore/inspector/
H A DInspectorProfilerAgent.cpp132 PassRefPtr<InspectorObject> InspectorProfilerAgent::createSnapshotHeader(const ScriptHeapSnapshot& snapshot) argument
135 header->setString("title", snapshot.title());
136 header->setNumber("uid", snapshot.uid());
220 RefPtr<ScriptHeapSnapshot> snapshot = it->second; local
221 *profileObject = createSnapshotHeader(*snapshot);
224 snapshot->writeJSON(&stream);
366 RefPtr<ScriptHeapSnapshot> snapshot = ScriptProfiler::takeHeapSnapshot(title, detailed ? &progress : 0); local
367 if (snapshot) {
368 m_snapshots.add(snapshot->uid(), snapshot);
[all...]
/external/chromium/chrome/browser/net/
H A Dpredictor.cc429 SortedUrlInfo snapshot; local
432 snapshot[it->first] = it->second;
435 for (SortedUrlInfo::iterator it(snapshot.begin());
436 it != snapshot.end(); it++) {
/external/chromium/chrome/common/
H A Dmetrics_helpers.cc392 const Histogram::SampleSet& snapshot) {
394 DCHECK_NE(0, snapshot.TotalCount());
395 snapshot.CheckSize(histogram);
403 WriteInt64Attribute("sum", snapshot.sum());
408 if (snapshot.counts(i)) {
412 WriteIntAttribute("count", snapshot.counts(i));
490 const base::Histogram::SampleSet& snapshot) {
491 current_log_->RecordHistogramDelta(histogram, snapshot);
529 // Get up-to-date snapshot of sample stats.
530 Histogram::SampleSet snapshot; local
390 RecordHistogramDelta( const Histogram& histogram, const Histogram::SampleSet& snapshot) argument
488 TransmitHistogramDelta( const base::Histogram& histogram, const base::Histogram::SampleSet& snapshot) argument
[all...]
/external/libpcap/
H A Dpcap-int.h149 int snapshot; member in struct:pcap
/external/v8/test/cctest/
H A Dtest-serialize.cc38 #include "snapshot.h"
176 PrintF("Unable to write to snapshot file \"%s\"\n", snapshot_file);
291 // serialize a snapshot in a VM that is booted from a snapshot.
447 byte* snapshot = ReadBytes(file_name, &snapshot_size); local
451 SnapshotByteSource source(snapshot, snapshot_size);
463 SnapshotByteSource source(snapshot, snapshot_size);
532 byte* snapshot = ReadBytes(file_name, &snapshot_size); local
536 SnapshotByteSource source(snapshot, snapshot_size);
548 SnapshotByteSource source(snapshot, snapshot_siz
[all...]

Completed in 8531 milliseconds

12