Home | History | Annotate | Download | only in src

Lines Matching refs:HeapSnapshot

6041   IsDeadCheck(isolate, "v8::HeapSnapshot::GetRetainedSize");
6048 IsDeadCheck(isolate, "v8::HeapSnapshot::GetChildrenCount");
6055 IsDeadCheck(isolate, "v8::HeapSnapshot::GetChild");
6063 IsDeadCheck(isolate, "v8::HeapSnapshot::GetRetainersCount");
6070 IsDeadCheck(isolate, "v8::HeapSnapshot::GetRetainer");
6078 IsDeadCheck(isolate, "v8::HeapSnapshot::GetDominatorNode");
6093 static i::HeapSnapshot* ToInternal(const HeapSnapshot* snapshot) {
6094 return const_cast<i::HeapSnapshot*>(
6095 reinterpret_cast<const i::HeapSnapshot*>(snapshot));
6099 void HeapSnapshot::Delete() {
6101 IsDeadCheck(isolate, "v8::HeapSnapshot::Delete");
6111 HeapSnapshot::Type HeapSnapshot::GetType() const {
6113 IsDeadCheck(isolate, "v8::HeapSnapshot::GetType");
6114 return static_cast<HeapSnapshot::Type>(ToInternal(this)->type());
6118 unsigned HeapSnapshot::GetUid() const {
6120 IsDeadCheck(isolate, "v8::HeapSnapshot::GetUid");
6125 Handle<String> HeapSnapshot::GetTitle() const {
6127 IsDeadCheck(isolate, "v8::HeapSnapshot::GetTitle");
6133 const HeapGraphNode* HeapSnapshot::GetRoot() const {
6135 IsDeadCheck(isolate, "v8::HeapSnapshot::GetHead");
6140 const HeapGraphNode* HeapSnapshot::GetNodeById(uint64_t id) const {
6142 IsDeadCheck(isolate, "v8::HeapSnapshot::GetNodeById");
6148 int HeapSnapshot::GetNodesCount() const {
6150 IsDeadCheck(isolate, "v8::HeapSnapshot::GetNodesCount");
6155 const HeapGraphNode* HeapSnapshot::GetNode(int index) const {
6157 IsDeadCheck(isolate, "v8::HeapSnapshot::GetNode");
6163 void HeapSnapshot::Serialize(OutputStream* stream,
6164 HeapSnapshot::SerializationFormat format) const {
6166 IsDeadCheck(isolate, "v8::HeapSnapshot::Serialize");
6168 "v8::HeapSnapshot::Serialize",
6171 "v8::HeapSnapshot::Serialize",
6174 "v8::HeapSnapshot::Serialize",
6188 const HeapSnapshot* HeapProfiler::GetSnapshot(int index) {
6191 return reinterpret_cast<const HeapSnapshot*>(
6196 const HeapSnapshot* HeapProfiler::FindSnapshot(unsigned uid) {
6199 return reinterpret_cast<const HeapSnapshot*>(
6204 const HeapSnapshot* HeapProfiler::TakeSnapshot(Handle<String> title,
6205 HeapSnapshot::Type type,
6209 i::HeapSnapshot::Type internal_type = i::HeapSnapshot::kFull;
6211 case HeapSnapshot::kFull:
6212 internal_type = i::HeapSnapshot::kFull;
6217 return reinterpret_cast<const HeapSnapshot*>(