HomeSort by relevance Sort by last modified time
    Searched refs:HeapSnapshot (Results 1 - 8 of 8) sorted by null

  /external/v8/src/profiler/
heap-profiler.h 18 class HeapSnapshot;
28 HeapSnapshot* TakeSnapshot(
43 HeapSnapshot* GetSnapshot(int index);
46 void RemoveSnapshot(HeapSnapshot* snapshot);
76 List<HeapSnapshot*> snapshots_;
heap-snapshot-generator.h 21 class HeapSnapshot;
38 void ReplaceToIndexWithEntry(HeapSnapshot* snapshot);
56 INLINE(HeapSnapshot* snapshot() const);
98 HeapEntry(HeapSnapshot* snapshot,
105 HeapSnapshot* snapshot() { return snapshot_; }
138 HeapSnapshot* snapshot_;
146 // HeapSnapshot represents a single heap snapshot. It is stored in
150 // HeapSnapshotGenerator fills in a HeapSnapshot.
151 class HeapSnapshot {
153 explicit HeapSnapshot(HeapProfiler* profiler)
    [all...]
heap-snapshot-generator-inl.h 24 HeapSnapshot* HeapGraphEdge::snapshot() const {
heap-profiler.cc 22 static void DeleteHeapSnapshot(HeapSnapshot** snapshot_ptr) {
40 void HeapProfiler::RemoveSnapshot(HeapSnapshot* snapshot) {
64 HeapSnapshot* HeapProfiler::TakeSnapshot(
67 HeapSnapshot* result = new HeapSnapshot(this);
132 HeapSnapshot* HeapProfiler::GetSnapshot(int index) {
heap-snapshot-generator.cc 40 void HeapGraphEdge::ReplaceToIndexWithEntry(HeapSnapshot* snapshot) {
47 HeapEntry::HeapEntry(HeapSnapshot* snapshot,
182 HeapSnapshot::HeapSnapshot(HeapProfiler* profiler)
203 void HeapSnapshot::Delete() {
209 void HeapSnapshot::RememberLastJSObjectId() {
214 void HeapSnapshot::AddSyntheticRootEntries() {
226 HeapEntry* HeapSnapshot::AddRootEntry() {
240 HeapEntry* HeapSnapshot::AddGcRootsEntry() {
252 HeapEntry* HeapSnapshot::AddGcSubrootEntry(int tag, SnapshotObjectId id)
    [all...]
  /external/v8/include/
v8-profiler.h 343 class V8_EXPORT HeapSnapshot {
440 const HeapSnapshot* GetHeapSnapshot(int index);
464 * parameter. HeapSnapshot::GetNodeById will always return NULL for such id.
486 const HeapSnapshot* TakeHeapSnapshot(
497 * HeapSnapshot.
  /external/v8/test/cctest/
test-heap-profiler.cc 98 const v8::HeapSnapshot* snapshot) {
141 static bool ValidateSnapshot(const v8::HeapSnapshot* snapshot, int depth = 3) {
142 i::HeapSnapshot* heap_snapshot = const_cast<i::HeapSnapshot*>(
143 reinterpret_cast<const i::HeapSnapshot*>(snapshot));
170 TEST(HeapSnapshot) {
182 const v8::HeapSnapshot* snapshot_env2 = heap_profiler->TakeHeapSnapshot();
215 const v8::HeapSnapshot* snapshot = heap_profiler->TakeHeapSnapshot();
243 const v8::HeapSnapshot* snapshot = heap_profiler->TakeHeapSnapshot();
281 const v8::HeapSnapshot* snapshot = heap_profiler->TakeHeapSnapshot()
    [all...]
  /external/v8/src/
api.cc     [all...]

Completed in 346 milliseconds