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

1 2 3 4 5

  /external/webkit/Source/WebCore/loader/icon/
PageURLRecord.cpp 58 PageURLSnapshot PageURLRecord::snapshot(bool forDeletion) const function in class:WebCore::PageURLRecord
IconRecord.cpp 98 IconSnapshot IconRecord::snapshot(bool forDeletion) const function in class:WebCore::IconRecord
  /frameworks/base/services/java/com/android/server/am/
CoreSettingsObserver.java 82 private void populateCoreSettings(Bundle snapshot) {
91 snapshot.putString(setting, value);
95 snapshot.putInt(setting, value);
99 snapshot.putFloat(setting, value);
103 snapshot.putLong(setting, value);
  /external/chromium/chrome/browser/
process_info_snapshot_mac_unittest.cc 27 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/webkit/Source/WebCore/bindings/v8/
ScriptProfiler.cpp 95 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/chromium/chrome/browser/sync/engine/
all_status.cc 48 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->syncer_status.syncer_stuck
    [all...]
syncer_types.h 109 const sessions::SyncSessionSnapshot* snapshot; member in struct:browser_sync::SyncEngineEvent
  /external/webkit/Source/WebCore/page/
FrameActionScheduler.cpp 93 Vector< OwnPtr<FrameAction> > snapshot; local
94 m_scheduledActions.swap(snapshot);
96 for (Vector< OwnPtr<FrameAction> >::iterator i = snapshot.begin(); i != snapshot.end(); ++i)
  /libcore/luni/src/main/java/libcore/util/
BasicLruCache.java 113 public synchronized final Map<K, V> snapshot() { method in class:BasicLruCache
  /external/chromium/base/metrics/
histogram_unittest.cc 340 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...]
  /frameworks/base/core/tests/coretests/src/android/os/
PerformanceCollectorTest.java 51 Bundle snapshot = (Bundle)readPrivateField("mPerfSnapshot", mPerfCollector); local
52 assertNotNull(snapshot);
53 assertEquals(2, snapshot.size());
60 Bundle snapshot = mPerfCollector.endSnapshot(); local
62 verifySnapshotBundle(snapshot);
111 Bundle snapshot = (Bundle)readPrivateField("mPerfSnapshot", mPerfCollector); local
112 assertNotNull(snapshot);
113 assertEquals(2, snapshot.size());
348 * by staggering calls to snapshot and timing functions.
399 private void verifySnapshotBundle(Bundle snapshot) {
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ConcurrentHashMultiset.java 187 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() {
  /external/ppp/pppd/include/
pcap-int.h 70 int snapshot; member in struct:pcap
  /frameworks/base/core/java/android/util/
LruCache.java 371 public synchronized final Map<K, V> snapshot() { method in class:LruCache
  /frameworks/base/tools/layoutlib/bridge/src/android/util/
LruCache.java 381 public synchronized final Map<K, V> snapshot() { method in class:LruCache
  /frameworks/support/v4/java/android/support/v4/util/
LruCache.java 316 public synchronized final Map<K, V> snapshot() { method in class:LruCache
  /libcore/luni/src/main/java/libcore/net/http/
HttpResponseCache.java 95 DiskLruCache.Snapshot snapshot; local
98 snapshot = cache.get(key);
99 if (snapshot == null) {
102 entry = new Entry(snapshot.getInputStream(ENTRY_METADATA));
109 snapshot.close();
114 ? new EntrySecureCacheResponse(entry, snapshot)
115 : new EntryCacheResponse(entry, snapshot);
186 DiskLruCache.Snapshot snapshot = (conditionalCacheHit instanceof EntryCacheResponse local
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpResponseCache.java 114 DiskLruCache.Snapshot snapshot; local
117 snapshot = cache.get(key);
118 if (snapshot == null) {
121 entry = new Entry(snapshot.getInputStream(ENTRY_METADATA));
128 snapshot.close();
132 return entry.isHttps() ? new EntrySecureCacheResponse(entry, snapshot)
133 : new EntryCacheResponse(entry, snapshot);
202 DiskLruCache.Snapshot snapshot = (conditionalCacheHit instanceof EntryCacheResponse local
    [all...]
  /external/guava/guava/src/com/google/common/cache/
AbstractCache.java 192 * 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/qemu/
blockdev.c 153 int snapshot = 0; local
180 snapshot = qemu_opt_get_bool(opts, "snapshot", 0);
467 if (snapshot) {
468 /* always use cache=unsafe with snapshot */
  /external/webkit/Source/WebCore/inspector/
InspectorProfilerAgent.cpp 132 PassRefPtr<InspectorObject> InspectorProfilerAgent::createSnapshotHeader(const ScriptHeapSnapshot& snapshot)
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...]
  /development/samples/training/bitmapfun/src/com/example/android/bitmapfun/util/
ImageFetcher.java 196 DiskLruCache.Snapshot snapshot; local
207 snapshot = mHttpDiskCache.get(key);
208 if (snapshot == null) {
221 snapshot = mHttpDiskCache.get(key);
223 if (snapshot != null) {
225 (FileInputStream) snapshot.getInputStream(DISK_CACHE_INDEX);
  /external/chromium/chrome/common/
metrics_helpers.cc 392 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
    [all...]
  /external/v8/test/cctest/
test-serialize.cc 38 #include "snapshot.h"
176 PrintF("Unable to write to snapshot file \"%s\"\n", snapshot_file);
272 CHECK(Snapshot::Initialize(FLAG_testing_serialization_file));
291 // serialize a snapshot in a VM that is booted from a snapshot.
292 if (!Snapshot::IsEnabled()) {
305 if (!Snapshot::IsEnabled()) {
318 if (!Snapshot::IsEnabled()) {
335 if (!Snapshot::IsEnabled()) {
435 if (!Snapshot::IsEnabled())
447 byte* snapshot = ReadBytes(file_name, &snapshot_size); local
532 byte* snapshot = ReadBytes(file_name, &snapshot_size); local
    [all...]
  /external/webkit/Source/WebKit2/PluginProcess/
PluginControllerProxy.cpp 481 void PluginControllerProxy::snapshot(ShareableBitmap::Handle& backingStoreHandle) function in class:WebKit::PluginControllerProxy
484 RefPtr<ShareableBitmap> bitmap = m_plugin->snapshot();

Completed in 550 milliseconds

1 2 3 4 5