Home
last modified time | relevance | path

Searched refs:SamplingNode (Results 1 – 5 of 5) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/dfx/hprof/
Dheap_sampling.h45 struct SamplingNode { struct
47 std::map<MethodKey, std::unique_ptr<struct SamplingNode>> children_; argument
54 struct SamplingNode head_; argument
67 struct SamplingNode *PushAndGetNode();
69 struct SamplingNode *FindOrAddNode(struct SamplingNode *node, const MethodKey &methodKey);
78 void CalNodeSelfSize(SamplingNode *node);
Dheap_sampling.cpp50 SamplingNode *node = PushAndGetNode(); in ImplementSampling()
169 SamplingNode *HeapSampling::PushAndGetNode() in PushAndGetNode()
172 SamplingNode *node = &(samplingInfo_->head_); in PushAndGetNode()
190 struct SamplingNode *HeapSampling::FindOrAddNode(struct SamplingNode *node, const MethodKey &method… in FindOrAddNode()
192 struct SamplingNode *childNode = nullptr; in FindOrAddNode()
197 std::unique_ptr<struct SamplingNode> tempNode = std::make_unique<struct SamplingNode>(); in FindOrAddNode()
227 void HeapSampling::CalNodeSelfSize(SamplingNode *node) in CalNodeSelfSize()
/arkcompiler/toolchain/tooling/test/
Dpt_types_test.cpp879 SamplingNode allocationNode; in HWTEST_F_L0()
/arkcompiler/toolchain/tooling/base/
Dpt_types.h1898 … static std::unique_ptr<SamplingHeapProfileNode> TransferHead(const SamplingNode *allocationNode);
Dpt_types.cpp2282 std::unique_ptr<SamplingHeapProfileNode> SamplingHeapProfile::TransferHead(const SamplingNode *samp… in TransferHead()