Home
last modified time | relevance | path

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

/external/v8/src/profiler/
Dsampling-heap-profiler.h52 class AllocationNode; variable
56 Sample(size_t size_, AllocationNode* owner_, Local<Value> local_, in Sample()
65 AllocationNode* const owner;
73 class AllocationNode {
75 AllocationNode(AllocationNode* parent, const char* name, int script_id, in AllocationNode() function
82 ~AllocationNode() { in ~AllocationNode()
105 AllocationNode* FindOrAddChildNode(const char* name, int script_id,
110 std::map<FunctionId, AllocationNode*> children_;
111 AllocationNode* const parent_;
119 DISALLOW_COPY_AND_ASSIGN(AllocationNode);
[all …]
Dsampling-heap-profiler.cc110 AllocationNode* node = AddStack(); in SampleObject()
121 AllocationNode* node = sample->owner; in OnWeakCallback()
128 AllocationNode* parent = node->parent_; in OnWeakCallback()
129 AllocationNode::FunctionId id = AllocationNode::function_id( in OnWeakCallback()
140 SamplingHeapProfiler::AllocationNode*
141 SamplingHeapProfiler::AllocationNode::FindOrAddChildNode(const char* name, in FindOrAddChildNode()
150 auto child = new AllocationNode(this, name, script_id, start_position); in FindOrAddChildNode()
155 SamplingHeapProfiler::AllocationNode* SamplingHeapProfiler::AddStack() { in AddStack()
156 AllocationNode* node = &profile_root_; in AddStack()
211 AllocationProfile* profile, SamplingHeapProfiler::AllocationNode* node, in TranslateAllocationNode()
/external/clang/lib/StaticAnalyzer/Checkers/
DRetainCountChecker.cpp2216 const ExplodedNode *AllocationNode = N; in GetAllocationSite() local
2245 AllocationNode = N; in GetAllocationSite()
2279 const ProgramPoint AllocPP = AllocationNode->getLocation(); in GetAllocationSite()