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

12

/external/v8/src/
H A Dheap-snapshot-generator-inl.h8 #include "src/heap-snapshot-generator.h"
15 return &snapshot()->entries()[from_index_];
19 HeapSnapshot* HeapGraphEdge::snapshot() const { function in class:v8::internal::HeapGraphEdge
20 return to_entry_->snapshot();
H A Dheap-profiler.cc10 #include "src/heap-snapshot-generator-inl.h"
41 void HeapProfiler::RemoveSnapshot(HeapSnapshot* snapshot) { argument
42 snapshots_.RemoveElement(snapshot);
H A Dheap-snapshot-generator.h34 void ReplaceToIndexWithEntry(HeapSnapshot* snapshot);
53 INLINE(HeapSnapshot* snapshot() const);
92 HeapEntry(HeapSnapshot* snapshot,
99 HeapSnapshot* snapshot() { return snapshot_; } function in class:v8::internal::BASE_EMBEDDED
139 // HeapSnapshot represents a single heap snapshot. It is stored in
330 V8HeapExplorer(HeapSnapshot* snapshot,
473 NativeObjectsExplorer(HeapSnapshot* snapshot,
530 HeapSnapshotGenerator(HeapSnapshot* snapshot,
548 // Used during snapshot generation.
560 explicit HeapSnapshotJSONSerializer(HeapSnapshot* snapshot) argument
[all...]
H A Dheap-snapshot-generator.cc7 #include "src/heap-snapshot-generator-inl.h"
42 void HeapGraphEdge::ReplaceToIndexWithEntry(HeapSnapshot* snapshot) { argument
43 to_entry_ = &snapshot->entries()[to_index_];
49 HeapEntry::HeapEntry(HeapSnapshot* snapshot, argument
59 snapshot_(snapshot),
164 // It is very important to keep objects that form a heap snapshot
782 HeapSnapshot* snapshot,
785 : heap_(snapshot->profiler()->heap_object_map()->heap()),
786 snapshot_(snapshot),
896 explicit SnapshotFiller(HeapSnapshot* snapshot, HeapEntriesMa argument
781 V8HeapExplorer( HeapSnapshot* snapshot, SnapshottingProgressReportingInterface* progress, v8::HeapProfiler::ObjectNameResolver* resolver) argument
2260 BasicHeapEntriesAllocator( HeapSnapshot* snapshot, HeapEntry::Type entries_type) argument
2294 NativeObjectsExplorer( HeapSnapshot* snapshot, SnapshottingProgressReportingInterface* progress) argument
2535 HeapSnapshotGenerator( HeapSnapshot* snapshot, v8::ActivityControl* control, v8::HeapProfiler::ObjectNameResolver* resolver, Heap* heap) argument
[all...]
H A Dapi.cc31 #include "src/heap-snapshot-generator-inl.h"
45 #include "src/snapshot.h"
6588 // code stubs with entry hooks embedded, so don't deserialize a snapshot.
7277 static i::HeapSnapshot* ToInternal(const HeapSnapshot* snapshot) { argument
7279 reinterpret_cast<const i::HeapSnapshot*>(snapshot));
7288 // If this is the last snapshot, clean up all accessory data as well.
/external/guava/guava/src/com/google/common/cache/
H A DAbstractCache.java193 * Returns a snapshot of this counter's values. Note that this may be an inconsistent view, as
196 CacheStats snapshot(); method in interface:AbstractCache.StatsCounter
252 public CacheStats snapshot() { method in class:AbstractCache.SimpleStatsCounter
266 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
549 return snapshot().toArray();
553 return snapshot().toArray(array);
556 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/guava/guava/src/com/google/common/util/concurrent/
H A DAbstractService.java144 private volatile StateSnapshot snapshot = new StateSnapshot(NEW); field in class:AbstractService
221 snapshot = new StateSnapshot(STARTING);
242 snapshot = new StateSnapshot(STARTING);
261 snapshot = new StateSnapshot(TERMINATED);
265 snapshot = new StateSnapshot(STARTING, true, null);
269 snapshot = new StateSnapshot(STOPPING);
387 // We have to examine the internal state of the snapshot here to properly handle the stop
389 if (snapshot.state != STARTING) {
391 "Cannot notifyStarted() when the service is " + snapshot.state);
396 if (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/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DCache.java177 DiskLruCache.Snapshot snapshot;
180 snapshot = cache.get(key);
181 if (snapshot == null) {
190 entry = new Entry(snapshot.getSource(ENTRY_METADATA));
192 Util.closeQuietly(snapshot);
196 Response response = entry.response(request, snapshot);
249 DiskLruCache.Snapshot snapshot = ((CacheResponseBody) cached.body()).snapshot;
252 editor = snapshot.edit(); // Returns null if snapshot i
638 response(Request request, DiskLruCache.Snapshot snapshot) argument
672 private final DiskLruCache.Snapshot snapshot; field in class:Cache.CacheResponseBody
677 CacheResponseBody(final DiskLruCache.Snapshot snapshot, String contentType, String contentLength) argument
[all...]
/external/libpcap/
H A Dpcap-int.h166 int snapshot; member in struct:pcap
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DDiskLruCache.java78 * <p>Clients call {@link #get} to read a snapshot of an entry. The read will
161 * a sequence number each time an edit is committed. A snapshot is stale if
418 * Returns a snapshot of the entry named {@code key}, or null if it doesn't
430 Snapshot snapshot = entry.snapshot();
431 if (snapshot == null) return null;
439 return snapshot;
709 * <p><strong>The caller must {@link Snapshot#close close}</strong> each snapshot returned by
720 /** The snapshot to return from {@link #next}. Null if we haven't computed that yet. */
723 /** The snapshot t
995 Snapshot snapshot() { method in class:DiskLruCache.Entry
[all...]
/external/okhttp/okio/okio/src/main/java/okio/
H A DBuffer.java1392 public ByteString snapshot() { method in class:Buffer
1396 return snapshot((int) size);
1402 public ByteString snapshot(int byteCount) { method in class:Buffer
/external/pdfium/samples/
H A Dpdfium_test.cc593 v8::StartupData snapshot; local
595 !GetExternalData(options, "snapshot_blob.bin", &snapshot)) {
599 v8::V8::SetSnapshotDataBlob(&snapshot);
/external/v8/test/cctest/
H A Dtest-serialize.cc43 #include "src/snapshot.h"
123 PrintF("Unable to write to snapshot file \"%s\"\n", snapshot_file);
318 // serialize a snapshot in a VM that is booted from a snapshot.
492 byte* snapshot = ReadBytes(file_name, &snapshot_size); local
497 SnapshotByteSource source(snapshot, snapshot_size);
509 SnapshotByteSource source(snapshot, snapshot_size);
614 byte* snapshot = ReadBytes(file_name, &snapshot_size); local
619 SnapshotByteSource source(snapshot, snapshot_size);
631 SnapshotByteSource source(snapshot, snapshot_siz
[all...]
H A Dtest-heap-profiler.cc39 #include "src/snapshot.h"
100 const v8::HeapSnapshot* snapshot) {
101 CHECK_EQ(2, snapshot->GetRoot()->GetChildrenCount());
104 snapshot->GetRoot()->GetChild(1)->GetToNode();
142 // Check that snapshot has no unretained entries except root.
143 static bool ValidateSnapshot(const v8::HeapSnapshot* snapshot, int depth = 3) { argument
145 reinterpret_cast<const i::HeapSnapshot*>(snapshot));
222 const v8::HeapSnapshot* snapshot = local
224 CHECK(ValidateSnapshot(snapshot));
225 const v8::HeapGraphNode* global = GetGlobalObject(snapshot);
99 GetGlobalObject( const v8::HeapSnapshot* snapshot) argument
251 const v8::HeapSnapshot* snapshot = local
291 const v8::HeapSnapshot* snapshot = local
319 const v8::HeapSnapshot* snapshot = local
392 const v8::HeapSnapshot* snapshot = local
414 const v8::HeapSnapshot* snapshot = local
452 const v8::HeapSnapshot* snapshot = local
480 const v8::HeapSnapshot* snapshot = local
505 const v8::HeapSnapshot* snapshot = local
579 const v8::HeapSnapshot* snapshot = local
657 const v8::HeapSnapshot* snapshot = local
836 const v8::HeapSnapshot* snapshot = local
904 const v8::HeapSnapshot* snapshot = local
1003 const v8::HeapSnapshot* snapshot = local
1265 CheckChildrenIds(const v8::HeapSnapshot* snapshot, const v8::HeapGraphNode* node, int level, int max_level) argument
1286 const v8::HeapSnapshot* snapshot = local
1301 const v8::HeapSnapshot* snapshot = local
1326 const v8::HeapSnapshot* snapshot = local
1372 const v8::HeapSnapshot* snapshot = local
1485 const v8::HeapSnapshot* snapshot = local
1578 const v8::HeapSnapshot* snapshot = local
1628 const v8::HeapSnapshot* snapshot = profiler->GetHeapSnapshot(i); local
1694 const v8::HeapSnapshot* snapshot = local
1712 const v8::HeapSnapshot* snapshot = local
1751 const v8::HeapSnapshot* snapshot = local
1773 const v8::HeapSnapshot* snapshot = local
1808 const v8::HeapSnapshot* snapshot = local
1899 const v8::HeapSnapshot* snapshot = local
1933 const v8::HeapSnapshot* snapshot = local
1962 const v8::HeapSnapshot* snapshot = local
1996 const v8::HeapSnapshot* snapshot = local
2042 const v8::HeapSnapshot* snapshot = local
2083 const v8::HeapSnapshot* snapshot = local
2104 const v8::HeapSnapshot* snapshot = local
2129 const v8::HeapSnapshot* snapshot = local
2152 const v8::HeapSnapshot* snapshot = local
2173 const v8::HeapSnapshot* snapshot = local
2212 const v8::HeapSnapshot* snapshot = local
2247 const v8::HeapSnapshot* snapshot = local
2301 const v8::HeapSnapshot* snapshot = local
2314 GetNodeByPath(const v8::HeapSnapshot* snapshot, const char* path[], int depth) argument
2343 const v8::HeapSnapshot* snapshot = local
2605 const v8::HeapSnapshot* snapshot = local
2625 GetRetainersCount(const v8::HeapSnapshot* snapshot, const v8::HeapGraphNode* node) argument
2664 const v8::HeapSnapshot* snapshot = local
2699 const v8::HeapSnapshot* snapshot = local
2727 const v8::HeapSnapshot* snapshot = local
[all...]
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
H A DDiskLruCacheTest.java163 DiskLruCache.Snapshot snapshot = cache.get("k1");
164 assertSnapshotValue(snapshot, 0, "ABC");
165 assertSnapshotValue(snapshot, 1, "DE");
176 DiskLruCache.Snapshot snapshot = cache.get("k1");
177 assertSnapshotValue(snapshot, 0, "A");
178 assertSnapshotValue(snapshot, 1, "B");
179 snapshot.close();
190 DiskLruCache.Snapshot snapshot = cache.get("k1");
191 assertSnapshotValue(snapshot, 0, "A");
192 assertSnapshotValue(snapshot,
1305 assertSnapshotValue(DiskLruCache.Snapshot snapshot, int index, String value) argument
[all...]
/external/v8/src/base/platform/
H A Dplatform-win32.cc1108 HANDLE snapshot = _CreateToolhelp32Snapshot( local
1111 if (snapshot == INVALID_HANDLE_VALUE) return result;
1114 BOOL cont = _Module32FirstW(snapshot, &module_entry);
1143 cont = _Module32NextW(snapshot, &module_entry);
1145 CloseHandle(snapshot);
/external/valgrind/massif/
H A Dms_main.c41 // - "show me the extra allocations since the last snapshot"
95 snapshot=0
103 snapshot=1
127 - each snapshot specifies an x-axis value and one or more y-axis values.
198 // - Detailed: these record those things in a normal snapshot, plus a very
203 // - Temporary: Massif does a temporary snapshot every so often. The idea
209 // - Permanent: Massif takes a permanent (detailed) snapshot in some
211 // - Peak snapshot: When the memory usage peak is reached, it takes a
212 // snapshot. It keeps this, unless the peak is subsequently exceeded,
213 // in which case it will overwrite the peak snapshot
1031 is_snapshot_in_use(Snapshot* snapshot) argument
1047 is_detailed_snapshot(Snapshot* snapshot) argument
1052 is_uncullable_snapshot(Snapshot* snapshot) argument
1059 sanity_check_snapshot(Snapshot* snapshot) argument
1082 clear_snapshot(Snapshot* snapshot, Bool do_sanity_check) argument
1095 delete_snapshot(Snapshot* snapshot) argument
1109 Snapshot* snapshot = &snapshots[i]; local
1299 take_snapshot(Snapshot* snapshot, SnapshotKind kind, Time my_time, Bool is_detailed) argument
1351 Snapshot* snapshot; local
2226 pp_snapshot(VgFile *fp, Snapshot* snapshot, Int snapshot_n) argument
2300 Snapshot* snapshot = & snapshots_array[i]; local
2322 Snapshot snapshot; local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-starteam.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_structs.h1293 GLuint snapshot:1; member in struct:brw_instruction::__anon12689::__anon12699
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.engine_2.0.0.v20100606.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.test.performance_3.6.0.v20091014.jarMETA-INF/MANIFEST.MF plugin.properties about.html scripts/cs.sh scripts/derby. ...

Completed in 1251 milliseconds

12