Home
last modified time | relevance | path

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

12

/system/core/libunwindstack/tests/
DDwarfSectionImplTest.cpp107 bool finished; in TYPED_TEST_P() local
108 ASSERT_FALSE(this->section_->Eval(&cie, &this->memory_, loc_regs, &regs, &finished)); in TYPED_TEST_P()
124 bool finished; in TYPED_TEST_P() local
125 ASSERT_FALSE(this->section_->Eval(&cie, &this->memory_, loc_regs, &regs, &finished)); in TYPED_TEST_P()
142 bool finished; in TYPED_TEST_P() local
143 ASSERT_FALSE(this->section_->Eval(&cie, &this->memory_, loc_regs, &regs, &finished)); in TYPED_TEST_P()
158 bool finished; in TYPED_TEST_P() local
159 ASSERT_TRUE(this->section_->Eval(&cie, &this->memory_, loc_regs, &regs, &finished)); in TYPED_TEST_P()
160 ASSERT_FALSE(finished); in TYPED_TEST_P()
176 bool finished; in TYPED_TEST_P() local
[all …]
DDwarfSectionTest.cpp64 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 …]
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.cpp501 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()
DElf.cpp185 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()
DDwarfSection.cpp39 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/
Dlmkd_test.cpp182 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/
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/bt/gd/os/linux_generic/
Dreactor_unittest.cc155 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/
DDwarfSection.h107 bool Step(uint64_t pc, Regs* regs, Memory* process_memory, bool* finished);
141 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/testing/gtest_extras/
DIsolate.cpp417 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/
Dflatbuffers.h1121 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/
Dkeymaster_worker.cpp680 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/
DREADME106 app(s), and when finished with the app, hit ^C ONCE on
/system/memory/lmkd/
Dlmkd.cpp1982 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()

12