Home
last modified time | relevance | path

Searched defs:crash (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/base/hiviewdfx/faultloggerd/interfaces/innerkits/unwinder/
H A Dunwinder.cpp66 Impl(int pid, bool crash) : pid_(pid) in Impl()
79 Impl(int pid, int nspid, bool crash) : pid_(nspid) in Impl()
293 Unwinder::Unwinder(int pid, bool crash) : impl_(std::make_shared<Impl>(pid, crash)) in Unwinder()
297 Unwinder::Unwinder(int pid, int nspid, bool crash) : impl_(std::make_shared<Impl>(pid, nspid, crash… in Unwinder()
H A Ddfx_maps.cpp54 std::shared_ptr<DfxMaps> DfxMaps::Create(pid_t pid, bool crash) in Create()