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

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
HeapSnapshot.js 482 WebInspector.HeapSnapshot = function(profile)
532 WebInspector.HeapSnapshot.prototype = {
    [all...]
JSHeapSnapshot.js 33 * @extends {WebInspector.HeapSnapshot}
45 WebInspector.HeapSnapshot.call(this, profile);
97 WebInspector.HeapSnapshot.prototype.dispose.call(this);
370 __proto__: WebInspector.HeapSnapshot.prototype
  /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/chromium_org/chrome/test/pyautolib/
remote_inspector_client.py 28 snapshot_info = my_client.HeapSnapshot(include_summary=True)
30 new_snapshot_info = my_client.HeapSnapshot(include_summary=True)
684 # See HeapSnapshot.js: WebInspector.HeapSnapshotNode.prototype.
740 HeapSnapshot: Takes a v8 heap snapshot and returns the summarized data.
812 def HeapSnapshot(self, include_summary=False):
    [all...]
  /external/chromium_org/v8/include/
v8-profiler.h 310 class V8_EXPORT HeapSnapshot {
395 const HeapSnapshot* GetHeapSnapshot(int index);
406 * parameter. HeapSnapshot::GetNodeById will always return NULL for such id.
427 const HeapSnapshot* TakeHeapSnapshot(
  /external/chromium_org/v8/src/
heap-snapshot-generator.h 37 class HeapSnapshot;
54 void ReplaceToIndexWithEntry(HeapSnapshot* snapshot);
72 INLINE(HeapSnapshot* snapshot() const);
108 HeapEntry(HeapSnapshot* snapshot,
114 HeapSnapshot* snapshot() { return snapshot_; }
148 HeapSnapshot* snapshot_;
155 // HeapSnapshot represents a single heap snapshot. It is stored in
159 // HeapSnapshotGenerator fills in a HeapSnapshot.
160 class HeapSnapshot {
162 HeapSnapshot(HeapSnapshotsCollection* collection
    [all...]
heap-snapshot-generator.cc 61 void HeapGraphEdge::ReplaceToIndexWithEntry(HeapSnapshot* snapshot) {
68 HeapEntry::HeapEntry(HeapSnapshot* snapshot,
201 HeapSnapshot::HeapSnapshot(HeapSnapshotsCollection* collection,
223 void HeapSnapshot::Delete() {
229 void HeapSnapshot::RememberLastJSObjectId() {
234 HeapEntry* HeapSnapshot::AddRootEntry() {
247 HeapEntry* HeapSnapshot::AddGcRootsEntry() {
258 HeapEntry* HeapSnapshot::AddGcSubrootEntry(int tag) {
271 HeapEntry* HeapSnapshot::AddEntry(HeapEntry::Type type
    [all...]
  /external/v8/src/
profile-generator.cc 965 void HeapEntry::Init(HeapSnapshot* snapshot,
    [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...]

Completed in 73 milliseconds