Home
last modified time | relevance | path

Searched refs:function_info_index (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/profiler/
Dallocation-tracker.cc15 AllocationTraceTree* tree, unsigned function_info_index) in AllocationTraceNode() argument
17 function_info_index_(function_info_index), in AllocationTraceNode()
30 unsigned function_info_index) { in FindChild() argument
33 if (node->function_info_index() == function_info_index) return node; in FindChild()
40 unsigned function_info_index) { in FindOrAddChild() argument
41 AllocationTraceNode* child = FindChild(function_info_index); in FindOrAddChild()
43 child = new AllocationTraceNode(tree_, function_info_index); in FindOrAddChild()
Dallocation-tracker.h29 unsigned function_info_index);
31 AllocationTraceNode* FindChild(unsigned function_info_index);
32 AllocationTraceNode* FindOrAddChild(unsigned function_info_index);
35 unsigned function_info_index() const { return function_info_index_; } in function_info_index() function
Dheap-snapshot-generator.cc2970 buffer_pos = utoa(node->function_info_index(), buffer, buffer_pos); in SerializeTraceNode()