Searched refs:GetStackRange (Results 1 - 11 of 11) sorted by relevance
/base/hiviewdfx/faultloggerd/interfaces/innerkits/unwinder/include/ |
H A D | thread_context.h | 70 bool GetStackRange(int32_t tid, uintptr_t& stackBottom, uintptr_t& stackTop);
|
H A D | dfx_maps.h | 50 bool GetStackRange(uintptr_t& bottom, uintptr_t& top);
|
H A D | unwinder.h | 61 bool GetStackRange(uintptr_t& stackBottom, uintptr_t& stackTop);
|
/base/hiviewdfx/faultloggerd/test/unittest/unwind/ |
H A D | unwinder_test.cpp | 61 * @tc.desc: test unwinder GetStackRange interface in pid == tid 70 GTEST_LOG_(INFO) << "when pid == tid and maps_ != null, GetStackRange(stackBottom, stackTop) is true"; in HWTEST_F() 71 ASSERT_TRUE(unwinder->GetStackRange(stackBottom, stackTop)); in HWTEST_F() 74 GTEST_LOG_(INFO) << "when pid == tid and maps_ == null, GetStackRange(stackBottom, stackTop) is false"; in HWTEST_F() 75 ASSERT_TRUE(unwinderNegative->GetStackRange(stackBottom, stackTop)); in HWTEST_F() 81 * @tc.desc: test unwinder GetStackRange interface in pid != tid 92 "GetStackRange(stackBottom, stackTop) is true"; in HWTEST_F() 94 result = unwinder->GetStackRange(stackBottom, stackTop); in HWTEST_F() 327 ASSERT_TRUE(unwinder->GetStackRange(stackBottom, stackTop)); in HWTEST_F() 328 GTEST_LOG_(INFO) << "UnwindTest002: GetStackRange in HWTEST_F() [all...] |
H A D | maps_test.cpp | 187 * @tc.desc: test GetStackRange 194 ASSERT_TRUE(maps_->GetStackRange(bottom, top)); in HWTEST_F()
|
/base/hiviewdfx/faultloggerd/interfaces/innerkits/unwinder/ |
H A D | unwinder.cpp | 167 bool GetStackRange(uintptr_t& stackBottom, uintptr_t& stackTop); 344 bool Unwinder::GetStackRange(uintptr_t& stackBottom, uintptr_t& stackTop) in GetStackRange() function in OHOS::HiviewDFX::Unwinder 346 return impl_->GetStackRange(stackBottom, stackTop); in GetStackRange() 499 if (maps_ != nullptr && !maps_->GetStackRange(stackBottom, stackTop)) { in GetMainStackRangeInner() 507 bool Unwinder::Impl::GetStackRange(uintptr_t& stackBottom, uintptr_t& stackTop) in GetStackRange() function in OHOS::HiviewDFX::Unwinder::Impl 551 } else if (!LocalThreadContext::GetInstance().GetStackRange(tid, stackBottom, stackTop)) { in UnwindLocalWithTid() 589 if (!GetStackRange(stackBottom, stackTop)) { in UnwindLocal()
|
H A D | dfx_maps.cpp | 285 bool DfxMaps::GetStackRange(uintptr_t& bottom, uintptr_t& top) in GetStackRange() function in OHOS::HiviewDFX::DfxMaps
|
H A D | thread_context.cpp | 227 bool LocalThreadContext::GetStackRange(int32_t tid, uintptr_t& stackBottom, uintptr_t& stackTop) in GetStackRange() function in OHOS::HiviewDFX::LocalThreadContext
|
/base/hiviewdfx/faultloggerd/test/fuzztest/faultloggerdunwinder_fuzzer/ |
H A D | faultloggerdunwinder_fuzzer.cpp | 254 context.GetStackRange(tid, stackBottom, stackTop); in TestThreadContext()
|
/base/hiviewdfx/hicollie/frameworks/native/thread_sampler/ |
H A D | thread_sampler.cpp | 218 if (!maps_->GetStackRange(stackBegin_, stackEnd_)) {
in InitUnwinder()
|
/base/hiviewdfx/faultloggerd/test/benchmarktest/unwinder/ |
H A D | unwind_local_benchmark.cpp | 110 if (!dataPtr->unwinder->GetStackRange(stackBottom, stackTop)) {
in UnwinderLocalFp()
|
Completed in 13 milliseconds