/base/hiviewdfx/faultloggerd/test/unittest/unwind/ |
H A D | arm_exidx_test.cpp | 156 * @tc.desc: test Step 169 ASSERT_TRUE(exidx.Step(entryOffset, rs)); in HWTEST_F() 176 * @tc.desc: test Step 189 ASSERT_TRUE(exidx.Step(entryOffset, rs)); in HWTEST_F() 196 * @tc.desc: test Step 210 ASSERT_TRUE(exidx.Step(entryOffset, rs)); in HWTEST_F() 217 * @tc.desc: test Step 230 ASSERT_TRUE(exidx.Step(entryOffset, rs)); in HWTEST_F() 240 * @tc.desc: test Step 253 ASSERT_TRUE(exidx.Step(entryOffse in HWTEST_F() [all...] |
H A D | unwinder_test.cpp | 405 * @tc.desc: test unwinder Step interface in remote case 435 unwRet = unwinder->Step(pc, sp, &context); in HWTEST_F() 443 * @tc.desc: test unwinder Step interface in local case 470 bool unwRet = unwinder->Step(pc, sp, &context); in HWTEST_F() 565 * @tc.desc: test unwinder Step interface in lr callback with apply failed case 595 bool unwRet = unwinder->Step(pc, failSp, &context); in HWTEST_F() 603 * @tc.desc: test unwinder Step interface in lr callback with step failed case 631 bool unwRet = unwinder->Step(failPc, sp, &context); in HWTEST_F()
|
/base/accesscontrol/sandbox_manager/services/common/database/include/ |
H A D | statement.h | 38 State Step();
|
/base/hiviewdfx/faultloggerd/interfaces/innerkits/unwinder/include/ |
H A D | dwarf_section.h | 36 bool Step(uintptr_t pc, uintptr_t fdeAddr, std::shared_ptr<RegLocState> rs);
|
H A D | arm_exidx.h | 47 bool Step(uintptr_t entryOffset, std::shared_ptr<RegLocState> rs);
|
H A D | unwinder.h | 76 bool Step(uintptr_t& pc, uintptr_t& sp, void *ctx);
|
/base/security/access_token/services/common/database/include/ |
H A D | statement.h | 40 State Step();
|
/base/accesscontrol/sandbox_manager/services/common/database/src/ |
H A D | sqlite_helper.cpp | 164 while (statement.Step() == Statement::State::ROW) { in GetVersion() 178 statement.Step(); in SetVersion()
|
H A D | statement.cpp | 95 Statement::State Statement::Step() in Step() function in OHOS::AccessControl::SandboxManager::Statement
|
/base/security/access_token/services/common/database/src/ |
H A D | sqlite_helper.cpp | 171 while (statement.Step() == Statement::State::ROW) { in GetVersion() 185 statement.Step(); in SetVersion()
|
H A D | statement.cpp | 81 Statement::State Statement::Step() in Step() function in OHOS::Security::AccessToken::Statement
|
/base/security/access_token/services/privacymanager/src/database/ |
H A D | permission_used_record_db.cpp | 139 int32_t ret = statement.Step(); in Add() 170 int32_t ret = statement.Step(); in Remove() 193 while (statement.Step() == Statement::State::ROW) { in FindByConditions() 215 if (countStatement.Step() == Statement::State::ROW) { in Count() 233 if (deleteExpireStatement.Step() != Statement::State::DONE) { in DeleteExpireRecords() 245 if (deleteExcessiveStatement.Step() != Statement::State::DONE) { in DeleteExcessiveRecords() 274 int32_t ret = statement.Step(); in Update() 302 while (statement.Step() == Statement::State::ROW) { in Query()
|
/base/hiviewdfx/faultloggerd/interfaces/innerkits/unwinder/ |
H A D | unwinder.cpp | 176 bool Step(uintptr_t& pc, uintptr_t& sp, void *ctx); 379 bool Unwinder::Step(uintptr_t& pc, uintptr_t& sp, void *ctx) in Step() function in OHOS::HiviewDFX::Unwinder 381 return impl_->Step(pc, sp, ctx); in Step() 771 DFXLOGW("Step signal frame, pc: %{public}p", reinterpret_cast<void *>(frame.pc)); in Unwind() 872 bool Unwinder::Impl::Step(uintptr_t& pc, uintptr_t& sp, void *ctx) in Step() function in OHOS::HiviewDFX::Unwinder::Impl 874 DFX_TRACE_SCOPED_DLSYM("Step pc:%p", reinterpret_cast<void *>(pc)); in Step() 886 DFXLOGW("Step signal frame, pc: %{public}p", reinterpret_cast<void *>(frame.pc)); in Step() 991 if (!armExidx_->Step((uintptr_t)uei.unwindInfo, rs)) { in StepInner() 993 DFXLOGU("Step exidx section error?"); in StepInner() 1007 if (!dwarfSection_->Step(fram in StepInner() [all...] |
H A D | arm_exidx.cpp | 365 bool ArmExidx::Step(uintptr_t entryOffset, std::shared_ptr<RegLocState> rs) in Step() function in OHOS::HiviewDFX::ArmExidx
|
H A D | dwarf_section.cpp | 117 bool DwarfSection::Step(uintptr_t pc, uintptr_t fdeAddr, std::shared_ptr<RegLocState> rs)
in Step() function in OHOS::HiviewDFX::DwarfSection
|