Home
last modified time | relevance | path

Searched refs:finished (Results 1 – 25 of 31) sorted by relevance

12

/system/core/libunwindstack/tests/
DDwarfSectionImplTest.cpp108 bool finished; in TYPED_TEST_P() local
109 ASSERT_FALSE(this->section_->Eval(&cie, &this->memory_, loc_regs, &regs, &finished)); in TYPED_TEST_P()
125 bool finished; in TYPED_TEST_P() local
126 ASSERT_FALSE(this->section_->Eval(&cie, &this->memory_, loc_regs, &regs, &finished)); in TYPED_TEST_P()
143 bool finished; in TYPED_TEST_P() local
144 ASSERT_FALSE(this->section_->Eval(&cie, &this->memory_, loc_regs, &regs, &finished)); in TYPED_TEST_P()
159 bool finished; in TYPED_TEST_P() local
160 ASSERT_TRUE(this->section_->Eval(&cie, &this->memory_, loc_regs, &regs, &finished)); in TYPED_TEST_P()
161 ASSERT_FALSE(finished); in TYPED_TEST_P()
177 bool finished; in TYPED_TEST_P() local
[all …]
DDwarfSectionTest.cpp70 bool finished; in TEST_F() local
71 ASSERT_FALSE(section_->Step(0x1000, nullptr, nullptr, &finished)); in TEST_F()
81 bool finished; in TEST_F() local
82 ASSERT_FALSE(section_->Step(0x1000, &regs_, nullptr, &finished)); in TEST_F()
95 bool finished; in TEST_F() local
96 ASSERT_FALSE(section_->Step(0x1000, &regs_, nullptr, &finished)); in TEST_F()
113 bool finished; in TEST_F() local
114 ASSERT_TRUE(section_->Step(0x1000, &regs_, &process, &finished)); in TEST_F()
139 bool finished; in TEST_F() local
140 ASSERT_TRUE(section_->Step(0x1000, &regs_, &process, &finished)); in TEST_F()
[all …]
DElfInterfaceArmTest.cpp266 bool finished; in TEST_F() local
267 ASSERT_FALSE(interface.StepExidx(0x7000, nullptr, nullptr, &finished)); in TEST_F()
281 ASSERT_FALSE(interface.StepExidx(0x7000, &regs, &process_memory_, &finished)); in TEST_F()
287 ASSERT_FALSE(interface.StepExidx(0x7000, &regs, &process_memory_, &finished)); in TEST_F()
292 ASSERT_TRUE(interface.StepExidx(0x7000, &regs, &process_memory_, &finished)); in TEST_F()
294 ASSERT_FALSE(finished); in TEST_F()
302 ASSERT_TRUE(interface.StepExidx(0x8000, &regs, &process_memory_, &finished)); in TEST_F()
307 ASSERT_FALSE(interface.StepExidx(0x8000, &regs, &process_memory_, &finished)); in TEST_F()
328 bool finished; in TEST_F() local
329 ASSERT_TRUE(interface.StepExidx(0x7000, &regs, &process_memory_, &finished)); in TEST_F()
[all …]
DElfFake.cpp55 bool ElfInterfaceFake::Step(uint64_t, Regs* regs, Memory*, bool* finished) { in Step() argument
62 if (entry.pc == 0 && entry.sp == 0 && !entry.finished) { in Step()
70 *finished = entry.finished; in Step()
DElfFake.h36 StepData(uint64_t pc, uint64_t sp, bool finished) : pc(pc), sp(sp), finished(finished) {} in StepData()
39 bool finished; member
DElfTest.cpp140 bool finished; in TEST_F() local
141 ASSERT_FALSE(elf.Step(0, nullptr, nullptr, &finished)); in TEST_F()
353 bool finished; in TEST_F() local
354 EXPECT_CALL(*interface, Step(0x1000, &regs, &process_memory, &finished)) in TEST_F()
357 ASSERT_TRUE(elf.Step(0x1000, &regs, &process_memory, &finished)); in TEST_F()
/system/core/libunwindstack/
DElfInterfaceArm.cpp103 bool ElfInterfaceArm::Step(uint64_t pc, Regs* regs, Memory* process_memory, bool* finished) { in Step() argument
108 return ElfInterface32::Step(pc, regs, process_memory, finished) || in Step()
109 StepExidx(pc, regs, process_memory, finished); in Step()
112 bool ElfInterfaceArm::StepExidx(uint64_t pc, Regs* regs, Memory* process_memory, bool* finished) { in StepExidx() argument
138 *finished = (regs_arm->pc() == 0) ? true : false; in StepExidx()
142 *finished = true; in StepExidx()
DLocalUnwinder.cpp115 bool finished = false; in Unwind() local
118 } else if (!elf->Step(step_pc, regs.get(), process_memory_.get(), &finished)) { in Unwind()
119 finished = true; in Unwind()
136 if (finished || frame_info->size() == max_frames || in Unwind()
DElfInterfaceArm.h75 bool Step(uint64_t pc, Regs* regs, Memory* process_memory, bool* finished) override;
77 bool StepExidx(uint64_t pc, Regs* regs, Memory* process_memory, bool* finished);
DUnwinder.cpp229 bool finished = false; in Unwind() local
253 } else if (elf->Step(step_pc, regs_, process_memory_.get(), &finished)) { in Unwind()
269 if (finished) { in Unwind()
DElfInterface.cpp502 bool ElfInterface::Step(uint64_t pc, Regs* regs, Memory* process_memory, bool* finished) { in Step() argument
509 if (debug_frame != nullptr && debug_frame->Step(pc, regs, process_memory, finished)) { in Step()
515 if (eh_frame != nullptr && eh_frame->Step(pc, regs, process_memory, finished)) { in Step()
520 gnu_debugdata_interface_->Step(pc, regs, process_memory, finished)) { in Step()
DElf.cpp191 bool Elf::Step(uint64_t rel_pc, Regs* regs, Memory* process_memory, bool* finished) { in Step() argument
198 return interface_->Step(rel_pc, regs, process_memory, finished); in Step()
DDwarfSection.cpp40 bool DwarfSection::Step(uint64_t pc, Regs* regs, Memory* process_memory, bool* finished) { in Step() argument
63 return Eval(it->second.cie, process_memory, it->second, regs, finished); in Step()
485 bool* finished) { in Eval() argument
562 *finished = (cur_regs->pc() == 0) ? true : false; in Eval()
/system/memory/lmkd/tests/
Dlmkd_test.cpp182 bool finished; member
194 data->finished = false; in add_pressure()
208 data->finished = (allocated_size >= data->total_size); in add_pressure()
260 if (data->finished) { in runMemStressTest()
276 data->finished = false; in runMemStressTest()
/system/extras/simpleperf/
Dworkload.cpp185 bool finished = false; in WaitChildProcess() local
189 finished = true; in WaitChildProcess()
205 return finished; in WaitChildProcess()
/system/extras/cppreopts/
Dcppreopts.rc32 setprop sys.cppreopt finished
40 setprop sys.cppreopt finished
/system/extras/simpleperf/scripts/
Dtest_monitor.py160 if self.finished():
179 if not self.finished():
199 def finished(self): member in Task
272 if task.finished():
/system/bt/gd/os/linux_generic/
Dreactor_unittest.cc157 finished.set_value(); in OnReadReady()
165 std::promise<void> finished; member in bluetooth::os::__anon246caf610111::FakeRunningReactable
240 fake_reactable.finished.get_future().wait(); in TEST_F()
259 fake_reactable.finished.get_future().wait(); in TEST_F()
277 fake_reactable.finished.get_future().wait(); in TEST_F()
/system/core/libunwindstack/include/unwindstack/
DDwarfSection.h109 bool Step(uint64_t pc, Regs* regs, Memory* process_memory, bool* finished);
143 Regs* regs, bool* finished) override;
DElf.h72 bool Step(uint64_t rel_pc, Regs* regs, Memory* process_memory, bool* finished);
DElfInterface.h67 virtual bool Step(uint64_t rel_pc, Regs* regs, Memory* process_memory, bool* finished);
/system/core/libunwindstack/tests/fuzz/
DUnwinderComponentCreator.cpp85 bool finished = i + 1 == step_count; in ElfPushFakeStepData() local
86 ElfInterfaceFake::FakePushStepData(StepData(pc, sp, finished)); in ElfPushFakeStepData()
/system/testing/gtest_extras/
DIsolate.cpp452 size_t finished = 0; in RunAllTests() local
454 while (finished < tests_.size()) { in RunAllTests()
459 finished += CheckTestsFinished(); in RunAllTests()
/system/chre/external/flatbuffers/include/flatbuffers/
Dflatbuffers.h704 nested(false), finished(false), minalign_(1), force_defaults_(false),
727 finished = false;
781 assert(finished);
804 finished = true;
1362 finished = true;
1385 bool finished;
/system/security/keystore/
Dkeymaster_worker.cpp678 bool finished = false; in finish() local
680 operationMap_.removeOperation(token, finished && rc.isOk()); in finish()
682 if (!finished) in finish()
737 finished = true; in finish()

12