OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:HeapSnapshot
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
HeapSnapshot.js
529
WebInspector.
HeapSnapshot
= function(profile, progress)
549
if (WebInspector.
HeapSnapshot
.enableAllocationProfiler) {
556
WebInspector.
HeapSnapshot
.enableAllocationProfiler = false;
586
WebInspector.
HeapSnapshot
.prototype = {
[
all
...]
JSHeapSnapshot.js
34
* @extends {WebInspector.
HeapSnapshot
}
47
WebInspector.
HeapSnapshot
.call(this, profile, progress);
116
WebInspector.
HeapSnapshot
.prototype.dispose.call(this);
389
__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
302
class V8_EXPORT
HeapSnapshot
{
387
const
HeapSnapshot
* GetHeapSnapshot(int index);
398
* parameter.
HeapSnapshot
::GetNodeById will always return NULL for such id.
419
const
HeapSnapshot
* TakeHeapSnapshot(
431
*
HeapSnapshot
.
/external/chromium_org/v8/src/
heap-snapshot-generator.h
39
class
HeapSnapshot
;
56
void ReplaceToIndexWithEntry(
HeapSnapshot
* snapshot);
74
INLINE(
HeapSnapshot
* snapshot() const);
112
HeapEntry(
HeapSnapshot
* snapshot,
118
HeapSnapshot
* snapshot() { return snapshot_; }
152
HeapSnapshot
* snapshot_;
157
//
HeapSnapshot
represents a single heap snapshot. It is stored in
161
// HeapSnapshotGenerator fills in a
HeapSnapshot
.
162
class
HeapSnapshot
{
164
HeapSnapshot
(HeapProfiler* profiler
[
all
...]
heap-snapshot-generator.cc
63
void HeapGraphEdge::ReplaceToIndexWithEntry(
HeapSnapshot
* snapshot) {
70
HeapEntry::HeapEntry(
HeapSnapshot
* snapshot,
205
HeapSnapshot
::
HeapSnapshot
(HeapProfiler* profiler,
227
void
HeapSnapshot
::Delete() {
233
void
HeapSnapshot
::RememberLastJSObjectId() {
238
HeapEntry*
HeapSnapshot
::AddRootEntry() {
251
HeapEntry*
HeapSnapshot
::AddGcRootsEntry() {
262
HeapEntry*
HeapSnapshot
::AddGcSubrootEntry(int tag) {
275
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 146 milliseconds