Home
last modified time | relevance | path

Searched refs:GetStackRange (Results 1 – 13 of 13) sorted by relevance

/ohos5.0/base/hiviewdfx/faultloggerd/test/unittest/unwind/
H A Dunwinder_test.cpp71 ASSERT_TRUE(unwinder->GetStackRange(stackBottom, stackTop));
75 ASSERT_TRUE(unwinderNegative->GetStackRange(stackBottom, stackTop));
94 result = unwinder->GetStackRange(stackBottom, stackTop); in __anon0ec0e5150102()
327 ASSERT_TRUE(unwinder->GetStackRange(stackBottom, stackTop));
451 ASSERT_TRUE(unwinder->GetStackRange(stackBottom, stackTop));
523 ASSERT_TRUE(unwinder->GetStackRange(stackBottom, stackTop));
573 ASSERT_TRUE(unwinder->GetStackRange(stackBottom, stackTop));
611 ASSERT_TRUE(unwinder->GetStackRange(stackBottom, stackTop));
H A Dmaps_test.cpp194 ASSERT_TRUE(maps_->GetStackRange(bottom, top));
/ohos5.0/base/hiviewdfx/faultloggerd/interfaces/innerkits/async_stack/
H A Dfp_unwinder.h40 static void GetStackRange(uintptr_t& stackBottom, uintptr_t& stackTop);
/ohos5.0/base/hiviewdfx/faultloggerd/interfaces/innerkits/unwinder/
H A Dlibunwinder.map15 OHOS::HiviewDFX::Unwinder::GetStackRange*;
62 OHOS::HiviewDFX::DfxMaps::GetStackRange*;
H A Dunwinder.cpp174 bool GetStackRange(uintptr_t& stackBottom, uintptr_t& stackTop);
355 bool Unwinder::GetStackRange(uintptr_t& stackBottom, uintptr_t& stackTop) in GetStackRange() function in OHOS::HiviewDFX::Unwinder
357 return impl_->GetStackRange(stackBottom, stackTop); in GetStackRange()
510 if (maps_ != nullptr && !maps_->GetStackRange(stackBottom, stackTop)) { in GetMainStackRangeInner()
518 bool Unwinder::Impl::GetStackRange(uintptr_t& stackBottom, uintptr_t& stackTop) in GetStackRange() function in OHOS::HiviewDFX::Unwinder::Impl
562 } else if (!LocalThreadContext::GetInstance().GetStackRange(tid, stackBottom, stackTop)) { in UnwindLocalWithTid()
599 if (!GetStackRange(stackBottom, stackTop)) { in UnwindLocal()
H A Ddfx_maps.cpp305 bool DfxMaps::GetStackRange(uintptr_t& bottom, uintptr_t& top) in GetStackRange() function in OHOS::HiviewDFX::DfxMaps
H A Dthread_context.cpp227 bool LocalThreadContext::GetStackRange(int32_t tid, uintptr_t& stackBottom, uintptr_t& stackTop) in GetStackRange() function in OHOS::HiviewDFX::LocalThreadContext
/ohos5.0/base/hiviewdfx/faultloggerd/interfaces/innerkits/unwinder/include/
H A Dthread_context.h70 bool GetStackRange(int32_t tid, uintptr_t& stackBottom, uintptr_t& stackTop);
H A Ddfx_maps.h52 bool GetStackRange(uintptr_t& bottom, uintptr_t& top);
H A Dunwinder.h61 bool GetStackRange(uintptr_t& stackBottom, uintptr_t& stackTop);
/ohos5.0/base/hiviewdfx/faultloggerd/test/fuzztest/faultloggerdunwinder_fuzzer/
H A Dfaultloggerdunwinder_fuzzer.cpp254 context.GetStackRange(tid, stackBottom, stackTop); in TestThreadContext()
/ohos5.0/base/hiviewdfx/faultloggerd/test/benchmarktest/unwinder/
H A Dunwind_local_benchmark.cpp110 if (!dataPtr->unwinder->GetStackRange(stackBottom, stackTop)) { in UnwinderLocalFp()
/ohos5.0/base/hiviewdfx/hicollie/frameworks/native/thread_sampler/
H A Dthread_sampler.cpp198 if (!maps_->GetStackRange(stackBegin_, stackEnd_)) { in InitUnwinder()