Searched refs:snapshot (Results 126 - 150 of 290) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/leveldatabase/src/include/leveldb/
H A Ddb.h95 // this handle will all observe a stable snapshot of the current DB
97 // snapshot is no longer needed.
100 // Release a previously acquired snapshot. The caller must not
101 // use "snapshot" after this call.
102 virtual void ReleaseSnapshot(const Snapshot* snapshot) = 0;
/external/chromium_org/v8/src/
H A Dheap-profiler.h8 #include "src/heap-snapshot-generator-inl.h"
46 void RemoveSnapshot(HeapSnapshot* snapshot);
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorHeapProfilerAgent.cpp249 RefPtr<ScriptHeapSnapshot> snapshot = ScriptProfiler::takeHeapSnapshot(title, &progress); local
250 if (!snapshot) {
251 *errorString = "Failed to take heap snapshot";
271 snapshot->writeJSON(&stream);
280 *error = "Invalid heap snapshot object id";
/external/libpcap/
H A Ddlpisubs.c178 caplen = min(p->snapshot, len);
192 /* Insure caplen does not exceed snapshot */
193 if (pkthdr.caplen > p->snapshot)
194 pkthdr.caplen = p->snapshot;
H A Dpcap-pf.c188 if (buflen > pc->snapshot)
189 buflen = pc->snapshot;
453 /* packetfilter includes the padding in the snapshot */
454 p->snapshot += PCAP_FDDIPAD;
457 if (ioctl(p->fd, EIOCTRUNCATE, (caddr_t)&p->snapshot) < 0) {
H A Dsf-pcap.c234 p->snapshot = hdr.snaplen;
347 * If it was done in cooked mode, p->snapshot was
350 * would be p->snapshot. However, a faked Ethernet
353 * would be p->snapshot + 14.
357 * cooked mode, and add 14 to the snapshot length.
358 * That means that, for a raw capture, the snapshot
363 p->snapshot += 14;
371 p->bufsize = p->snapshot;
374 * Bogus snapshot length; use 64KiB as a fallback.
496 * over the BUFMOD problem and not setting the snapshot
[all...]
/external/chromium_org/chrome/browser/sync_file_system/local/
H A Dlocal_file_sync_context_unittest.cc84 webkit_blob::ScopedFile* snapshot) {
94 base::Unretained(this), metadata, changes, snapshot));
102 webkit_blob::ScopedFile* snapshot) {
104 metadata, changes, snapshot);
115 webkit_blob::ScopedFile* snapshot) {
119 url, sync_mode, metadata, changes, snapshot);
127 webkit_blob::ScopedFile snapshot) {
134 *snapshot_out = snapshot.Pass();
302 webkit_blob::ScopedFile snapshot; local
305 sync_mode, &metadata, &changes, &snapshot));
79 StartPrepareForSync(FileSystemContext* file_system_context, const FileSystemURL& url, LocalFileSyncContext::SyncMode sync_mode, SyncFileMetadata* metadata, FileChangeList* changes, webkit_blob::ScopedFile* snapshot) argument
97 PrepareForSync(FileSystemContext* file_system_context, const FileSystemURL& url, LocalFileSyncContext::SyncMode sync_mode, SyncFileMetadata* metadata, FileChangeList* changes, webkit_blob::ScopedFile* snapshot) argument
109 GetPrepareForSyncClosure( FileSystemContext* file_system_context, const FileSystemURL& url, LocalFileSyncContext::SyncMode sync_mode, SyncFileMetadata* metadata, FileChangeList* changes, webkit_blob::ScopedFile* snapshot) argument
122 DidPrepareForSync(SyncFileMetadata* metadata_out, FileChangeList* changes_out, webkit_blob::ScopedFile* snapshot_out, SyncStatusCode status, const LocalFileSyncInfo& sync_file_info, webkit_blob::ScopedFile snapshot) argument
[all...]
H A Dlocal_file_sync_context.h71 webkit_blob::ScopedFile snapshot)>
136 // If |sync_mode| is SYNC_SNAPSHOT this creates a snapshot (if the
273 webkit_blob::ScopedFile snapshot);
287 // won't step in while snapshot sync is ongoing.
289 // snapshot sync is finished to decrement the writing counter.
/external/chromium_org/content/shell/renderer/
H A Dwebkit_test_runner.cc634 void WebKitTestRunner::CaptureDumpPixels(const SkBitmap& snapshot) { argument
635 DCHECK_NE(0, snapshot.info().fWidth);
636 DCHECK_NE(0, snapshot.info().fHeight);
638 SkAutoLockPixels snapshot_lock(snapshot);
640 base::MD5Sum(snapshot.getPixels(), snapshot.getSize(), &digest);
649 routing_id(), actual_pixel_hash, snapshot));
/external/chromium_org/content/browser/dom_storage/
H A Dsession_storage_database.cc118 // operation, create a snapshot and read from it.
120 options.snapshot = db_->GetSnapshot();
127 db_->ReleaseSnapshot(options.snapshot);
267 // CommitAreaChanges. To protect the reading operation, create a snapshot and
270 options.snapshot = db_->GetSnapshot();
278 db_->ReleaseSnapshot(options.snapshot);
283 db_->ReleaseSnapshot(options.snapshot);
318 db_->ReleaseSnapshot(options.snapshot);
/external/chromium_org/extensions/browser/value_store/
H A Dleveldb_value_store.cc27 // Scoped leveldb snapshot which releases the snapshot on destruction.
119 ScopedSnapshot snapshot(db_.get());
120 options.snapshot = snapshot.get();
147 ScopedSnapshot snapshot(db_.get());
148 options.snapshot = snapshot.get();
/external/chromium_org/v8/test/cctest/
H A Dtest-serialize.cc42 #include "src/snapshot.h"
171 PrintF("Unable to write to snapshot file \"%s\"\n", snapshot_file);
307 // serialize a snapshot in a VM that is booted from a snapshot.
493 byte* snapshot = ReadBytes(file_name, &snapshot_size); local
498 SnapshotByteSource source(snapshot, snapshot_size);
510 SnapshotByteSource source(snapshot, snapshot_size);
605 byte* snapshot = ReadBytes(file_name, &snapshot_size); local
610 SnapshotByteSource source(snapshot, snapshot_size);
622 SnapshotByteSource source(snapshot, snapshot_siz
[all...]
/external/chromium_org/sync/syncable/
H A Ddirectory.h145 // constructed and forms a consistent snapshot of what needs to be sent to
307 // SaveChanges works by taking a consistent snapshot of the current Directory
309 // snapshot to the backing store under no transaction, and finally cleaning
550 // Constructs a consistent snapshot of the current Directory state and
551 // indices (by deep copy) under a ReadTransaction for use in |snapshot|.
553 void TakeSnapshotForSaveChanges(SaveChangesSnapshot* snapshot);
557 // |snapshot|. See SaveChanges() for more information.
558 bool VacuumAfterSaveChanges(const SaveChangesSnapshot& snapshot);
561 // processed |snapshot| failed, for example, due to no disk space.
562 void HandleSaveChangesFailure(const SaveChangesSnapshot& snapshot);
[all...]
H A Ddirectory_backing_store.h64 // Updates the on-disk store with the input |snapshot| as a database
69 virtual bool SaveChanges(const Directory::SaveChangesSnapshot& snapshot);
H A Ddirectory_unittest.cc285 Directory::SaveChangesSnapshot snapshot; local
287 dir()->TakeSnapshotForSaveChanges(&snapshot);
290 ASSERT_EQ(expected_dirty_metahandles.size(), snapshot.dirty_metas.size());
291 for (EntryKernelSet::const_iterator i = snapshot.dirty_metas.begin();
292 i != snapshot.dirty_metas.end();
296 dir()->VacuumAfterSaveChanges(snapshot);
321 Directory::SaveChangesSnapshot snapshot; local
323 dir()->TakeSnapshotForSaveChanges(&snapshot);
326 EXPECT_EQ(expected_dirty_metahandles.size(), snapshot.dirty_metas.size());
327 for (EntryKernelSet::const_iterator i = snapshot
388 Directory::SaveChangesSnapshot snapshot; local
415 Directory::SaveChangesSnapshot snapshot; local
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DScriptProfiler.cpp241 const v8::HeapSnapshot* snapshot = profiler->TakeHeapSnapshot(v8String(isolate, title), &adapter, &resolver); local
242 return snapshot ? ScriptHeapSnapshot::create(snapshot) : nullptr;
/external/chromium_org/components/metrics/
H A Dmetrics_log.cc183 const base::HistogramSamples& snapshot) {
185 DCHECK_NE(0, snapshot.TotalCount());
191 histogram_proto->set_sum(snapshot.sum());
193 for (scoped_ptr<SampleCountIterator> it = snapshot.Iterator(); !it->Done();
182 RecordHistogramDelta(const std::string& histogram_name, const base::HistogramSamples& snapshot) argument
/external/chromium_org/sync/internal_api/
H A Ddebug_info_event_listener.h44 const sessions::SyncSessionSnapshot& snapshot) OVERRIDE;
/external/chromium_org/tools/memory_inspector/memory_inspector/frontends/www_content/js/
H A Dmmap.js47 this.dumpMmapsFromStorage = function(archiveName, snapshot) {
48 webservice.ajaxRequest('/storage/' + archiveName + '/' + snapshot + '/mmaps',
/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/qemu/android/
H A Dcmdline-options.h80 OPT_FLAG ( no_snapstorage, "do not mount a snapshot storage file (this disables all snapshot functionality)" )
81 OPT_PARAM( snapshot, "<name>", "name of snapshot within storage file for auto-start and auto-save (default 'default-boot')" )
83 OPT_FLAG ( no_snapshot_save, "do not auto-save to snapshot on exit: abandon changed state" )
84 OPT_FLAG ( no_snapshot_load, "do not auto-start from snapshot: perform a full boot" )
86 OPT_FLAG ( no_snapshot_update_time, "do not do try to correct snapshot time on restore" )
/external/chromium_org/base/
H A Dtracked_objects_unittest.cc262 DeathDataSnapshot snapshot(*data);
263 EXPECT_EQ(2, snapshot.count);
264 EXPECT_EQ(2 * run_ms, snapshot.run_duration_sum);
265 EXPECT_EQ(run_ms, snapshot.run_duration_max);
266 EXPECT_EQ(run_ms, snapshot.run_duration_sample);
267 EXPECT_EQ(2 * queue_ms, snapshot.queue_duration_sum);
268 EXPECT_EQ(queue_ms, snapshot.queue_duration_max);
269 EXPECT_EQ(queue_ms, snapshot.queue_duration_sample);
/external/chromium_org/ui/display/chromeos/x11/
H A Dnative_display_event_dispatcher_x11_unittest.cc25 DisplaySnapshotX11* snapshot = new DisplaySnapshotX11( local
41 return snapshot;
/external/chromium_org/ui/snapshot/
H A Dsnapshot.target.darwin-arm.mk30 ui/snapshot/snapshot_android.cc \
31 ui/snapshot/snapshot_async.cc
381 .PHONY: snapshot
382 snapshot: ui_snapshot_snapshot_gyp
H A Dsnapshot.target.darwin-arm64.mk30 ui/snapshot/snapshot_android.cc \
31 ui/snapshot/snapshot_async.cc
349 .PHONY: snapshot
350 snapshot: ui_snapshot_snapshot_gyp

Completed in 784 milliseconds

1234567891011>>