/system/core/libunwindstack/tests/ |
D | DwarfSectionImplTest.cpp | 108 bool finished; in TYPED_TEST_P() local 109 ASSERT_FALSE(this->section_->Eval(&cie, &this->memory_, loc_regs, ®s, &finished)); in TYPED_TEST_P() 125 bool finished; in TYPED_TEST_P() local 126 ASSERT_FALSE(this->section_->Eval(&cie, &this->memory_, loc_regs, ®s, &finished)); in TYPED_TEST_P() 143 bool finished; in TYPED_TEST_P() local 144 ASSERT_FALSE(this->section_->Eval(&cie, &this->memory_, loc_regs, ®s, &finished)); in TYPED_TEST_P() 159 bool finished; in TYPED_TEST_P() local 160 ASSERT_TRUE(this->section_->Eval(&cie, &this->memory_, loc_regs, ®s, &finished)); in TYPED_TEST_P() 161 ASSERT_FALSE(finished); in TYPED_TEST_P() 177 bool finished; in TYPED_TEST_P() local [all …]
|
D | DwarfSectionTest.cpp | 70 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, ®s_, nullptr, &finished)); in TEST_F() 95 bool finished; in TEST_F() local 96 ASSERT_FALSE(section_->Step(0x1000, ®s_, nullptr, &finished)); in TEST_F() 113 bool finished; in TEST_F() local 114 ASSERT_TRUE(section_->Step(0x1000, ®s_, &process, &finished)); in TEST_F() 139 bool finished; in TEST_F() local 140 ASSERT_TRUE(section_->Step(0x1000, ®s_, &process, &finished)); in TEST_F() [all …]
|
D | ElfInterfaceArmTest.cpp | 266 bool finished; in TEST_F() local 267 ASSERT_FALSE(interface.StepExidx(0x7000, nullptr, nullptr, &finished)); in TEST_F() 281 ASSERT_FALSE(interface.StepExidx(0x7000, ®s, &process_memory_, &finished)); in TEST_F() 287 ASSERT_FALSE(interface.StepExidx(0x7000, ®s, &process_memory_, &finished)); in TEST_F() 292 ASSERT_TRUE(interface.StepExidx(0x7000, ®s, &process_memory_, &finished)); in TEST_F() 294 ASSERT_FALSE(finished); in TEST_F() 302 ASSERT_TRUE(interface.StepExidx(0x8000, ®s, &process_memory_, &finished)); in TEST_F() 307 ASSERT_FALSE(interface.StepExidx(0x8000, ®s, &process_memory_, &finished)); in TEST_F() 328 bool finished; in TEST_F() local 329 ASSERT_TRUE(interface.StepExidx(0x7000, ®s, &process_memory_, &finished)); in TEST_F() [all …]
|
D | ElfFake.cpp | 55 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()
|
D | ElfFake.h | 36 StepData(uint64_t pc, uint64_t sp, bool finished) : pc(pc), sp(sp), finished(finished) {} in StepData() 39 bool finished; member
|
D | ElfTest.cpp | 140 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, ®s, &process_memory, &finished)) in TEST_F() 357 ASSERT_TRUE(elf.Step(0x1000, ®s, &process_memory, &finished)); in TEST_F()
|
/system/core/libunwindstack/ |
D | ElfInterfaceArm.cpp | 103 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()
|
D | LocalUnwinder.cpp | 115 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()
|
D | ElfInterfaceArm.h | 75 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);
|
D | Unwinder.cpp | 229 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()
|
D | ElfInterface.cpp | 502 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()
|
D | Elf.cpp | 191 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()
|
D | DwarfSection.cpp | 40 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/ |
D | lmkd_test.cpp | 182 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/ |
D | workload.cpp | 185 bool finished = false; in WaitChildProcess() local 189 finished = true; in WaitChildProcess() 205 return finished; in WaitChildProcess()
|
/system/extras/cppreopts/ |
D | cppreopts.rc | 32 setprop sys.cppreopt finished 40 setprop sys.cppreopt finished
|
/system/extras/simpleperf/scripts/ |
D | test_monitor.py | 160 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/ |
D | reactor_unittest.cc | 157 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/ |
D | DwarfSection.h | 109 bool Step(uint64_t pc, Regs* regs, Memory* process_memory, bool* finished); 143 Regs* regs, bool* finished) override;
|
D | Elf.h | 72 bool Step(uint64_t rel_pc, Regs* regs, Memory* process_memory, bool* finished);
|
D | ElfInterface.h | 67 virtual bool Step(uint64_t rel_pc, Regs* regs, Memory* process_memory, bool* finished);
|
/system/core/libunwindstack/tests/fuzz/ |
D | UnwinderComponentCreator.cpp | 85 bool finished = i + 1 == step_count; in ElfPushFakeStepData() local 86 ElfInterfaceFake::FakePushStepData(StepData(pc, sp, finished)); in ElfPushFakeStepData()
|
/system/testing/gtest_extras/ |
D | Isolate.cpp | 452 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/ |
D | flatbuffers.h | 704 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/ |
D | keymaster_worker.cpp | 678 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()
|