/system/core/libunwindstack/tests/ |
D | DwarfSectionTest.cpp | 64 ASSERT_FALSE(section_->Step(0x1000, nullptr, nullptr, &finished)); in TEST_F() 75 ASSERT_FALSE(section_->Step(0x1000, nullptr, nullptr, &finished)); in TEST_F() 89 ASSERT_FALSE(section_->Step(0x1000, nullptr, nullptr, &finished)); in TEST_F() 107 ASSERT_TRUE(section_->Step(0x1000, nullptr, &process, &finished)); in TEST_F() 133 ASSERT_TRUE(section_->Step(0x1000, nullptr, &process, &finished)); in TEST_F() 134 ASSERT_TRUE(section_->Step(0x1000, nullptr, &process, &finished)); in TEST_F() 135 ASSERT_TRUE(section_->Step(0x1500, nullptr, &process, &finished)); in TEST_F() 153 ASSERT_TRUE(section_->Step(0x1000, nullptr, &process, &finished)); in TEST_F() 163 ASSERT_TRUE(section_->Step(0x600, nullptr, &process, &finished)); in TEST_F() 164 ASSERT_TRUE(section_->Step(0x700, nullptr, &process, &finished)); in TEST_F()
|
D | ElfFake.cpp | 55 bool ElfInterfaceFake::Step(uint64_t, Regs* regs, Memory*, bool* finished) { in Step() function in unwindstack::ElfInterfaceFake
|
D | ElfTest.cpp | 139 ASSERT_FALSE(elf.Step(0, nullptr, nullptr, &finished)); in TEST_F() 319 MOCK_METHOD4(Step, bool(uint64_t, Regs*, Memory*, bool*)); 339 EXPECT_CALL(*interface, Step(0x1000, ®s, &process_memory, &finished)) in TEST_F() 342 ASSERT_TRUE(elf.Step(0x1000, ®s, &process_memory, &finished)); in TEST_F()
|
D | ElfFake.h | 77 bool Step(uint64_t, Regs*, Memory*, bool*) override;
|
/system/core/libunwindstack/ |
D | ElfInterfaceArm.cpp | 103 bool ElfInterfaceArm::Step(uint64_t pc, Regs* regs, Memory* process_memory, bool* finished) { in Step() function in unwindstack::ElfInterfaceArm 108 return ElfInterface32::Step(pc, regs, process_memory, finished) || in Step()
|
D | ElfInterfaceArm.h | 75 bool Step(uint64_t pc, Regs* regs, Memory* process_memory, bool* finished) override;
|
D | ElfInterface.cpp | 459 bool ElfInterface::Step(uint64_t pc, Regs* regs, Memory* process_memory, bool* finished) { in Step() function in unwindstack::ElfInterface 466 if (debug_frame != nullptr && debug_frame->Step(pc, regs, process_memory, finished)) { in Step() 472 if (eh_frame != nullptr && eh_frame->Step(pc, regs, process_memory, finished)) { in Step() 477 gnu_debugdata_interface_->Step(pc, regs, process_memory, finished)) { in Step()
|
D | LocalUnwinder.cpp | 118 } else if (!elf->Step(step_pc, regs.get(), process_memory_.get(), &finished)) { in Unwind()
|
D | Elf.cpp | 182 bool Elf::Step(uint64_t rel_pc, Regs* regs, Memory* process_memory, bool* finished) { in Step() function in unwindstack::Elf 189 return interface_->Step(rel_pc, regs, process_memory, finished); in Step()
|
D | Unwinder.cpp | 251 } else if (elf->Step(step_pc, regs_, process_memory_.get(), &finished)) { in Unwind()
|
D | DwarfSection.cpp | 39 bool DwarfSection::Step(uint64_t pc, Regs* regs, Memory* process_memory, bool* finished) { in Step() function in unwindstack::DwarfSection
|
/system/core/libunwindstack/include/unwindstack/ |
D | Elf.h | 72 bool Step(uint64_t rel_pc, Regs* regs, Memory* process_memory, bool* finished);
|
D | DwarfSection.h | 107 bool Step(uint64_t 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/fastboot/fuzzy_fastboot/ |
D | README.md | 292 ### Step 1: Pass the generic Conformance tests 336 ### Step 2: Pass all the other generic tests 347 ### Step 3: Create a device XML configuration 366 ### Step 4: Figure out what Fuzzy Fastboot can't/isn't testing 372 ### Step 5: Celebrate
|
/system/extras/simpleperf/doc/ |
D | README.md | 180 Step 1: Add android::debuggable="true" in AndroidManifest.xml to enable profiling. 186 Step 2: Add wrap.sh in lib/`arch` directories. wrap.sh runs the app without passing any debug flags
|
/system/core/init/ |
D | README.md | 657 3. Step 2 is repeated for /vendor/etc/init then /odm/etc/init
|