Home
last modified time | relevance | path

Searched refs:unwSize (Results 1 – 7 of 7) sorted by relevance

/ohos5.0/base/hiviewdfx/faultloggerd/test/benchmarktest/unwinder/
H A Dunwind_local_benchmark.cpp92 size_t unwSize = 0; in UnwinderLocal() local
94 unwSize = unwinder->GetPcs().size(); in UnwinderLocal()
96 unwSize = unwinder->GetFrames().size(); in UnwinderLocal()
98 LOGU("%s frames.size: %zu", __func__, unwSize); in UnwinderLocal()
99 return unwSize; in UnwinderLocal()
132 for (size_t i = 0; i < unwSize; ++i) { in UnwinderLocalFp()
141 return unwSize; in UnwinderLocalFp()
155 for (auto i = 0; i < unwSize; ++i) { in FpUnwinderLocal()
164 return unwSize; in FpUnwinderLocal()
178 for (auto i = 0; i < unwSize; ++i) { in FpUnwinderLocalSafe()
[all …]
H A Dunwind_local_tid_benchmark.cpp107 auto unwSize = unwinder->GetPcs().size(); in BenchmarkUnwinderLocalWithTid() local
109 LOGU("%s, frames.size: %zu", __func__, unwSize); in BenchmarkUnwinderLocalWithTid()
110 if (unwSize < TEST_MIN_UNWIND_FRAMES) { in BenchmarkUnwinderLocalWithTid()
H A Dunwind_remote_benchmark.cpp146 size_t unwSize = 0; in Run() local
148 unwSize = UnwinderRemoteFp(unwinder, pid); in Run()
150 unwSize = UnwinderRemote(unwinder, pid); in Run()
153 if (unwSize < TEST_MIN_UNWIND_FRAMES) { in Run()
/ohos5.0/base/hiviewdfx/faultloggerd/test/benchmarktest/unwindstack/
H A Dunwind_remote_benchmark.cpp113 auto unwSize = unwinder.NumFrames(); in UnwindRemote() local
114 LOGU("%s frames.size: %zu", __func__, unwSize); in UnwindRemote()
116 for (size_t i = 0; i < unwSize; ++i) { in UnwindRemote()
121 return unwSize; in UnwindRemote()
154 auto unwSize = UnwindRemote(unwinder, dataPtr); in Run() local
155 if (unwSize < TEST_MIN_UNWIND_FRAMES) { in Run()
H A Dunwind_local_benchmark.cpp80 auto unwSize = unwinder.NumFrames(); in UnwindLocal() local
81 LOGU("%s frames.size: %zu", __func__, unwSize); in UnwindLocal()
83 for (size_t i = 0; i < unwSize; ++i) { in UnwindLocal()
88 return unwSize; in UnwindLocal()
/ohos5.0/base/hiviewdfx/faultloggerd/test/benchmarktest/unwind/
H A Dunwind_remote_benchmark.cpp122 auto unwSize = UnwindRemote(pid, as); in Run() local
123 if (unwSize < TEST_MIN_UNWIND_FRAMES) { in Run()
166 auto unwSize = UnwindRemote(pid, as); in RunCache() local
167 if (unwSize < TEST_MIN_UNWIND_FRAMES) { in RunCache()
/ohos5.0/base/hiviewdfx/faultloggerd/test/unittest/unwind/
H A Dunwinder_test.cpp538 auto unwSize = unwinder->GetPcs().size(); variable
539 ASSERT_GT(unwSize, 1) << "pcs.size() error";
555 ASSERT_EQ(idx, unwSize) << "StepTest004: idx:" << idx;