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

1 2 3

  /frameworks/base/core/tests/coretests/src/android/os/
PerformanceCollectorTest.java 54 Bundle snapshot = (Bundle)readPrivateField("mPerfSnapshot", mPerfCollector); local
55 assertNotNull(snapshot);
56 assertEquals(2, snapshot.size());
63 Bundle snapshot = mPerfCollector.endSnapshot(); local
65 verifySnapshotBundle(snapshot);
114 Bundle snapshot = (Bundle)readPrivateField("mPerfSnapshot", mPerfCollector); local
115 assertNotNull(snapshot);
116 assertEquals(2, snapshot.size());
351 * by staggering calls to snapshot and timing functions.
402 private void verifySnapshotBundle(Bundle snapshot) {
    [all...]
  /external/webkit/WebCore/loader/icon/
PageURLRecord.cpp 58 PageURLSnapshot PageURLRecord::snapshot(bool forDeletion) const function in class:WebCore::PageURLRecord
IconRecord.cpp 97 IconSnapshot IconRecord::snapshot(bool forDeletion) const function in class:WebCore::IconRecord
PageURLRecord.h 64 PageURLSnapshot snapshot(bool forDeletion = false) const;
IconDatabase.cpp 436 m_pageURLsPendingSync.set(pageURL, record->snapshot());
496 m_pageURLsPendingSync.set(pageURLOriginal.crossThreadString(), pageRecord->snapshot(true));
501 m_iconsPendingSync.set(iconRecord->iconURL(), iconRecord->snapshot(true));
544 m_iconsPendingSync.set(iconURL, icon->snapshot());
623 m_pageURLsPendingSync.set(pageURL, pageRecord->snapshot());
627 m_iconsPendingSync.set(iconRecord->iconURL(), iconRecord->snapshot(true));
    [all...]
IconRecord.h 90 IconSnapshot snapshot(bool forDeletion = false) const;
  /frameworks/base/core/java/com/android/internal/os/
SamplingProfilerIntegration.java 69 /** Whether or not a snapshot is being persisted. */
73 * Writes a snapshot to the SD card if profiling is enabled.
79 * If we're already writing a snapshot, don't bother enqueing another
82 * snapshot is smaller than N subset snapshots).
109 * Writes the zygote's snapshot to internal storage if profiling is enabled.
120 byte[] snapshot = SamplingProfiler.getInstance().snapshot();
121 if (snapshot == null) {
132 + System.currentTimeMillis() + ".snapshot";
155 out.write(snapshot);
    [all...]
  /external/dhcpcd/mk/
dist.mk 23 snapshot:
31 snap: snapshot
  /external/ppp/pppd/include/
pcap-int.h 70 int snapshot; member in struct:pcap
  /external/v8/
Android.libv8.mk 45 # Generate snapshot.cc
47 SNAP_GEN := $(intermediates)/snapshot.cc
55 src/snapshot-empty.cc
Android.mksnapshot.mk 20 src/snapshot-empty.cc
  /dalvik/libcore/dalvik/src/main/java/dalvik/system/
SamplingProfiler.java 119 public synchronized byte[] snapshot() { method in class:SamplingProfiler
130 byte[] bytes = snapshot(pointer);
139 logger.info("Grabbed snapshot in " + (elapsed / 1000) + "us."
151 return snapshot(pointer);
239 private static native byte[] snapshot(int pointer); method in class:SamplingProfiler
296 * Dumps a snapshot to the log. Useful for debugging.
298 public static void logSnapshot(byte[] snapshot) {
300 new ByteArrayInputStream(snapshot));
  /external/bluetooth/glib/gmodule/
gmodule-win32.c 124 HANDLE snapshot; local
141 if ((snapshot = (*pfnCreateToolhelp32Snapshot) (TH32CS_SNAPMODULE, 0)) == (HANDLE) -1)
146 if ((*pfnModule32First) (snapshot, &me32))
151 } while ((*pfnModule32Next) (snapshot, &me32));
154 CloseHandle (snapshot);
  /external/guava/src/com/google/common/collect/
ConcurrentHashMultiset.java 147 return snapshot().toArray();
151 return snapshot().toArray(array);
158 private List<E> snapshot() { method in class:ConcurrentHashMultiset
419 return snapshot().toArray();
423 return snapshot().toArray(array);
430 private List<Multiset.Entry<E>> snapshot() {
  /external/libpcap/
pcap-nit.c 176 if (caplen > p->snapshot)
177 caplen = p->snapshot;
221 nioc.nioc_snaplen = p->snapshot;
265 * NIT requires a snapshot length of at least 96.
284 p->snapshot = snaplen;
pcap-snoop.c 106 if (cc == (p->snapshot + sizeof(struct snoopheader)) &&
107 (datalen < p->snapshot))
110 caplen = (datalen < p->snapshot) ? datalen : p->snapshot;
358 p->snapshot = snaplen;
pcap-septel.c 141 caplen = p->snapshot ;
222 handle->snapshot = snaplen;
pcap-snit.c 139 * loop through each snapshot in the chunk
183 /* next snapshot */
187 if (caplen > p->snapshot)
188 caplen = p->snapshot;
283 * NIT requires a snapshot length of at least 96.
345 /* set the snapshot length */
354 p->snapshot = snaplen;
  /external/webkit/WebKit/chromium/src/js/
HeapProfilerPanel.js 35 WebInspector.ProfilesPanel.prototype.addSnapshot = function(snapshot) {
36 snapshot.title = WebInspector.UIString("Snapshot %d", snapshot.number);
37 snapshot.typeId = WebInspector.HeapSnapshotProfileType.TypeId;
40 snapshots.push(snapshot);
42 snapshot.listIndex = snapshots.length - 1;
45 this.addProfileHeader(WebInspector.HeapSnapshotProfileType.TypeId, snapshot);
47 this.addProfileHeader(snapshot);
49 this.dispatchEventToListeners("snapshot added")
    [all...]
  /dalvik/vm/native/
dalvik_system_SamplingProfiler.c 388 * snapshot and adds the result to arg.
566 // Calculate size of snapshot in bytes.
570 // Write snapshot.
571 ArrayObject* snapshot local
573 if (snapshot == NULL) {
574 // Not enough memory to hold snapshot.
582 char* offset = (char*) snapshot->contents;
588 int actualSize = offset - (char*) snapshot->contents;
599 dvmReleaseTrackedAlloc((Object*) snapshot, NULL);
600 RETURN_PTR(snapshot);
    [all...]
  /frameworks/base/libs/utils/
BackupHelpers.cpp 90 read_snapshot_file(int fd, KeyedVector<String8,FileState>* snapshot)
125 snapshot->add(String8(filename, file.nameLen), file);
147 write_snapshot_file(int fd, const KeyedVector<String8,FileRec>& snapshot)
152 const int N = snapshot.size();
154 const FileRec& g = snapshot.valueAt(i);
156 const String8& name = snapshot.keyAt(i);
174 FileRec r = snapshot.valueAt(i);
176 const String8& name = snapshot.keyAt(i);
517 // Record for the snapshot
625 KeyedVector<String8,FileRec> snapshot;
    [all...]
  /external/v8/test/cctest/
test-serialize.cc 38 #include "snapshot.h"
180 PrintF("Unable to write to snapshot file \"%s\"\n", snapshot_file);
275 CHECK(Snapshot::Initialize(FLAG_testing_serialization_file));
295 // serialize a snapshot in a VM that is booted from a snapshot.
296 if (!Snapshot::IsEnabled()) {
310 if (!Snapshot::IsEnabled()) {
324 if (!Snapshot::IsEnabled()) {
342 if (!Snapshot::IsEnabled()) {
441 if (!Snapshot::IsEnabled())
452 byte* snapshot = ReadBytes(file_name, &snapshot_size); local
533 byte* snapshot = ReadBytes(file_name, &snapshot_size); local
    [all...]
  /external/v8/test/mjsunit/
debug-script.js 56 // If no snapshot is used, only the 'gc' extension is loaded.
57 // If snapshot is used, all extensions are cached in the snapshot.
  /dalvik/dx/src/com/android/dx/dex/code/
LocalList.java 351 RegisterSpecSet snapshot = local
353 state.snapshot(insn.getAddress(), snapshot); local
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/bluetooth/glib/
Makefile.am 123 .PHONY: files release sanity snapshot ChangeLog
138 snapshot:

Completed in 444 milliseconds

1 2 3