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

  /external/webkit/Source/WebCore/bindings/v8/
ScriptHeapSnapshot.h 37 class HeapSnapshot;
53 static PassRefPtr<ScriptHeapSnapshot> create(const v8::HeapSnapshot* snapshot)
64 ScriptHeapSnapshot(const v8::HeapSnapshot* snapshot)
68 const v8::HeapSnapshot* m_snapshot;
ScriptHeapSnapshot.cpp 45 const_cast<v8::HeapSnapshot*>(m_snapshot)->Delete();
81 m_snapshot->Serialize(&outputStream, v8::HeapSnapshot::kJSON);
ScriptProfiler.cpp 95 const v8::HeapSnapshot* snapshot = 0;
98 snapshot = v8::HeapProfiler::TakeSnapshot(v8String(title), v8::HeapSnapshot::kFull, &adapter);
100 snapshot = v8::HeapProfiler::TakeSnapshot(v8String(title), v8::HeapSnapshot::kAggregated);
  /external/v8/src/
heap-profiler.h 36 class HeapSnapshot;
54 static HeapSnapshot* TakeSnapshot(const char* name,
57 static HeapSnapshot* TakeSnapshot(String* name,
61 static HeapSnapshot* GetSnapshot(int index);
62 static HeapSnapshot* FindSnapshot(unsigned uid);
79 HeapSnapshot* TakeSnapshotImpl(const char* name,
82 HeapSnapshot* TakeSnapshotImpl(String* name,
heap-profiler.cc 69 HeapSnapshot* HeapProfiler::TakeSnapshot(const char* name,
79 HeapSnapshot* HeapProfiler::TakeSnapshot(String* name,
108 HeapSnapshot* HeapProfiler::TakeSnapshotImpl(const char* name,
111 HeapSnapshot::Type s_type = static_cast<HeapSnapshot::Type>(type);
112 HeapSnapshot* result =
116 case HeapSnapshot::kFull: {
133 HeapSnapshot* HeapProfiler::TakeSnapshotImpl(String* name,
147 HeapSnapshot* HeapProfiler::GetSnapshot(int index) {
154 HeapSnapshot* HeapProfiler::FindSnapshot(unsigned uid)
    [all...]
profile-generator.h 498 class HeapSnapshot;
516 // In a HeapSnapshot, all entries are hand-allocated in a continuous array
535 void Init(HeapSnapshot* snapshot,
543 HeapSnapshot* snapshot() { return snapshot_; }
613 HeapSnapshot* snapshot_;
622 // HeapSnapshot represents a single heap snapshot. It is stored in
626 // HeapSnapshotGenerator fills in a HeapSnapshot.
627 class HeapSnapshot {
630 kFull = v8::HeapSnapshot::kFull
633 HeapSnapshot(HeapSnapshotsCollection* collection
    [all...]
profile-generator.cc 965 void HeapEntry::Init(HeapSnapshot* snapshot,
    [all...]
api.cc     [all...]
  /external/v8/include/
v8-profiler.h 319 class V8EXPORT HeapSnapshot {
402 static const HeapSnapshot* GetSnapshot(int index);
405 static const HeapSnapshot* FindSnapshot(unsigned uid);
409 * See HeapSnapshot::Type for types description.
411 static const HeapSnapshot* TakeSnapshot(
413 HeapSnapshot::Type type = HeapSnapshot::kFull,
  /external/v8/test/cctest/
test-heap-profiler.cc 56 const v8::HeapSnapshot* snapshot) {
92 TEST(HeapSnapshot) {
103 const v8::HeapSnapshot* snapshot_env2 =
105 i::HeapSnapshot* i_snapshot_env2 =
106 const_cast<i::HeapSnapshot*>(
107 reinterpret_cast<const i::HeapSnapshot*>(snapshot_env2));
141 const v8::HeapSnapshot* snapshot =
168 const v8::HeapSnapshot* snapshot =
205 const v8::HeapSnapshot* snapshot =
231 const v8::HeapSnapshot* snapshot
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
HeapSnapshotProxy.js 113 this._snapshot = new WebInspector.HeapSnapshot(rawSnapshot);
DetailedHeapshotView.js 756 var s = new WebInspector.HeapSnapshot(snapshot);
767 var s = new WebInspector.HeapSnapshot(profile);
    [all...]
HeapSnapshot.js 483 WebInspector.HeapSnapshot = function(profile)
492 WebInspector.HeapSnapshot.prototype = {
    [all...]
HeapSnapshotView.js 383 var snapshot = new WebInspector.HeapSnapshot(loadedSnapshot);
    [all...]

Completed in 208 milliseconds