/system/core/libunwindstack/tests/ |
D | DwarfSectionImplTest.cpp | 107 bool finished; in TYPED_TEST_P() local 108 ASSERT_FALSE(this->section_->Eval(&cie, &this->memory_, loc_regs, ®s, &finished)); in TYPED_TEST_P() 124 bool finished; in TYPED_TEST_P() local 125 ASSERT_FALSE(this->section_->Eval(&cie, &this->memory_, loc_regs, ®s, &finished)); in TYPED_TEST_P() 142 bool finished; in TYPED_TEST_P() local 143 ASSERT_FALSE(this->section_->Eval(&cie, &this->memory_, loc_regs, ®s, &finished)); in TYPED_TEST_P() 158 bool finished; in TYPED_TEST_P() local 159 ASSERT_TRUE(this->section_->Eval(&cie, &this->memory_, loc_regs, ®s, &finished)); in TYPED_TEST_P() 160 ASSERT_FALSE(finished); in TYPED_TEST_P() 176 bool finished; in TYPED_TEST_P() local [all …]
|
D | DwarfSectionTest.cpp | 64 bool finished; in TEST_F() local 65 ASSERT_FALSE(section_->Step(0x1000, nullptr, nullptr, &finished)); in TEST_F() 75 bool finished; in TEST_F() local 76 ASSERT_FALSE(section_->Step(0x1000, nullptr, nullptr, &finished)); in TEST_F() 89 bool finished; in TEST_F() local 90 ASSERT_FALSE(section_->Step(0x1000, nullptr, nullptr, &finished)); in TEST_F() 107 bool finished; in TEST_F() local 108 ASSERT_TRUE(section_->Step(0x1000, nullptr, &process, &finished)); in TEST_F() 133 bool finished; in TEST_F() local 134 ASSERT_TRUE(section_->Step(0x1000, nullptr, &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 | 501 bool ElfInterface::Step(uint64_t pc, Regs* regs, Memory* process_memory, bool* finished) { in Step() argument 508 if (debug_frame != nullptr && debug_frame->Step(pc, regs, process_memory, finished)) { in Step() 514 if (eh_frame != nullptr && eh_frame->Step(pc, regs, process_memory, finished)) { in Step() 519 gnu_debugdata_interface_->Step(pc, regs, process_memory, finished)) { in Step()
|
D | Elf.cpp | 185 bool Elf::Step(uint64_t rel_pc, Regs* regs, Memory* process_memory, bool* finished) { in Step() argument 192 return interface_->Step(rel_pc, regs, process_memory, finished); in Step()
|
D | DwarfSection.cpp | 39 bool DwarfSection::Step(uint64_t pc, Regs* regs, Memory* process_memory, bool* finished) { in Step() argument 62 return Eval(it->second.cie, process_memory, it->second, regs, finished); in Step() 477 bool* finished) { in Eval() argument 548 *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() 259 if (data->finished) { in runMemStressTest() 275 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/bt/gd/os/linux_generic/ |
D | reactor_unittest.cc | 155 finished.set_value(); in OnReadReady() 163 std::promise<void> finished; member in bluetooth::os::__anon65dccb4c0111::FakeRunningReactable 236 fake_reactable.finished.get_future().wait(); in TEST_F() 254 fake_reactable.finished.get_future().wait(); in TEST_F() 271 fake_reactable.finished.get_future().wait(); in TEST_F()
|
/system/core/libunwindstack/include/unwindstack/ |
D | DwarfSection.h | 107 bool Step(uint64_t pc, Regs* regs, Memory* process_memory, bool* finished); 141 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/testing/gtest_extras/ |
D | Isolate.cpp | 417 size_t finished = 0; in RunAllTests() local 419 while (finished < tests_.size()) { in RunAllTests() 424 finished += CheckTestsFinished(); in RunAllTests()
|
/system/chre/external/flatbuffers/include/flatbuffers/ |
D | flatbuffers.h | 1121 finished(false), 1143 finished(false), 1178 swap(finished, other.finished); 1204 finished = false; 1275 FLATBUFFERS_ASSERT(finished); 1304 finished = true; 2096 finished = true; 2117 bool finished;
|
/system/security/keystore/ |
D | keymaster_worker.cpp | 680 bool finished = false; in finish() local 682 operationMap_.removeOperation(token, finished && rc.isOk(), rc.getErrorCode()); in finish() 684 if (!finished) in finish() 739 finished = true; in finish()
|
/system/extras/ioblame/ |
D | README | 106 app(s), and when finished with the app, hit ^C ONCE on
|
/system/memory/lmkd/ |
D | lmkd.cpp | 1982 static void stop_wait_for_proc_kill(bool finished) { in stop_wait_for_proc_kill() argument 2000 if (finished) { in stop_wait_for_proc_kill()
|