Lines Matching refs:DfxFrame

186     void AddFrame(DfxFrame& frame);
187 const std::vector<DfxFrame>& GetFrames();
192 void FillFrames(std::vector<DfxFrame>& frames);
193 void FillFrame(DfxFrame& frame);
194 void FillJsFrame(DfxFrame& frame);
195 bool GetFrameByPc(uintptr_t pc, std::shared_ptr<DfxMaps> maps, DfxFrame& frame);
196 void GetFramesByPcs(std::vector<DfxFrame>& frames, std::vector<uintptr_t> pcs);
203 void SetFrames(const std::vector<DfxFrame>& frames) in SetFrames()
213 bool FillJsFrameLocal(DfxFrame& frame, JsFunction* jsFunction);
278 std::vector<DfxFrame> frames_ {};
400 void Unwinder::AddFrame(DfxFrame& frame) in AddFrame()
405 const std::vector<DfxFrame>& Unwinder::GetFrames() const in GetFrames()
415 void Unwinder::FillFrames(std::vector<DfxFrame>& frames) in FillFrames()
420 void Unwinder::FillFrame(DfxFrame& frame) in FillFrame()
425 void Unwinder::FillJsFrame(DfxFrame& frame) in FillJsFrame()
430 bool Unwinder::GetFrameByPc(uintptr_t pc, std::shared_ptr<DfxMaps> maps, DfxFrame& frame) in GetFrameByPc()
435 void Unwinder::GetFramesByPcs(std::vector<DfxFrame>& frames, std::vector<uintptr_t> pcs) in GetFramesByPcs()
460 void Unwinder::SetFrames(std::vector<DfxFrame>& frames) in SetFrames()
710 DfxFrame dfxFrame; in StepArkJsFrame()
1151 const std::vector<DfxFrame>& Unwinder::Impl::GetFrames() in GetFrames()
1167 DfxFrame dfxFrame; in AddFrame()
1181 void Unwinder::Impl::AddFrame(DfxFrame& frame) in AddFrame()
1191 void Unwinder::FillLocalFrames(std::vector<DfxFrame>& frames) in FillLocalFrames()
1207 void Unwinder::Impl::FillFrames(std::vector<DfxFrame>& frames) in FillFrames()
1221 void Unwinder::Impl::FillFrame(DfxFrame& frame) in FillFrame()
1249 void Unwinder::Impl::FillJsFrame(DfxFrame& frame) in FillJsFrame()
1281 bool Unwinder::Impl::FillJsFrameLocal(DfxFrame& frame, JsFunction* jsFunction) in FillJsFrameLocal()
1301 bool Unwinder::Impl::GetFrameByPc(uintptr_t pc, std::shared_ptr<DfxMaps> maps, DfxFrame &frame) in GetFrameByPc()
1346 void Unwinder::Impl::GetFramesByPcs(std::vector<DfxFrame>& frames, std::vector<uintptr_t> pcs) in GetFramesByPcs()
1351 DfxFrame frame; in GetFramesByPcs()
1367 void Unwinder::GetLocalFramesByPcs(std::vector<DfxFrame>& frames, std::vector<uintptr_t> pcs) in GetLocalFramesByPcs()
1371 DfxFrame frame; in GetLocalFramesByPcs()
1398 std::string Unwinder::GetFramesStr(const std::vector<DfxFrame>& frames) in GetFramesStr()
1405 auto frame = reinterpret_cast<DfxFrame *>(data); in DlPhdrCallback()