Lines Matching refs:maps
195 bool GetFrameByPc(uintptr_t pc, std::shared_ptr<DfxMaps> maps, DfxFrame& frame);
430 bool Unwinder::GetFrameByPc(uintptr_t pc, std::shared_ptr<DfxMaps> maps, DfxFrame& frame) in GetFrameByPc() argument
432 return impl_->GetFrameByPc(pc, maps, frame); in GetFrameByPc()
574 context.maps = maps_; in UnwindLocalWithTid()
629 context.maps = maps_; in UnwindLocal()
665 context.maps = maps_; in UnwindRemote()
1301 bool Unwinder::Impl::GetFrameByPc(uintptr_t pc, std::shared_ptr<DfxMaps> maps, DfxFrame &frame) in GetFrameByPc() argument
1305 if ((maps == nullptr) || !maps->FindMapByAddr(pc, map) || map == nullptr) { in GetFrameByPc()
1379 bool Unwinder::GetSymbolByPc(uintptr_t pc, std::shared_ptr<DfxMaps> maps, std::string& funcName, ui… in GetSymbolByPc() argument
1381 if (maps == nullptr) { in GetSymbolByPc()
1385 if (!maps->FindMapByAddr(pc, map) || (map == nullptr)) { in GetSymbolByPc()