Home
last modified time | relevance | path

Searched refs:Step (Results 1 – 24 of 24) sorted by relevance

/system/unwinding/libunwindstack/tests/
DDwarfSectionTest.cpp72 ASSERT_FALSE(section_->Step(0x1000, nullptr, nullptr, &finished, &is_signal_frame)); in TEST_F()
84 ASSERT_FALSE(section_->Step(0x1000, &regs_, nullptr, &finished, &is_signal_frame)); in TEST_F()
99 ASSERT_FALSE(section_->Step(0x1000, &regs_, nullptr, &finished, &is_signal_frame)); in TEST_F()
118 ASSERT_TRUE(section_->Step(0x1000, &regs_, &process, &finished, &is_signal_frame)); in TEST_F()
145 ASSERT_TRUE(section_->Step(0x1000, &regs_, &process, &finished, &is_signal_frame)); in TEST_F()
146 ASSERT_TRUE(section_->Step(0x1000, &regs_, &process, &finished, &is_signal_frame)); in TEST_F()
147 ASSERT_TRUE(section_->Step(0x1500, &regs_, &process, &finished, &is_signal_frame)); in TEST_F()
166 ASSERT_TRUE(section_->Step(0x1000, &regs_, &process, &finished, &is_signal_frame)); in TEST_F()
176 ASSERT_TRUE(section_->Step(0x600, &regs_, &process, &finished, &is_signal_frame)); in TEST_F()
177 ASSERT_TRUE(section_->Step(0x700, &regs_, &process, &finished, &is_signal_frame)); in TEST_F()
DElfFake.cpp56 bool ElfInterfaceFake::Step(uint64_t, Regs* regs, Memory*, bool* finished, bool* is_signal_frame) { in Step() function in unwindstack::ElfInterfaceFake
DElfTest.cpp143 ASSERT_FALSE(elf.Step(0, nullptr, nullptr, &finished, &is_signal_frame)); in TEST_F()
351 MOCK_METHOD(bool, Step, (uint64_t, Regs*, Memory*, bool*, bool*), (override));
376 EXPECT_CALL(*interface, Step(0x1000, &regs, &process_memory, &finished, &is_signal_frame)) in TEST_F()
379 ASSERT_TRUE(elf.Step(0x1000, &regs, &process_memory, &finished, &is_signal_frame)); in TEST_F()
DElfFake.h80 bool Step(uint64_t, Regs*, Memory*, bool*, bool*) override;
/system/chre/java/test/cross_validation/src/com/google/android/chre/test/crossvalidator/
DChreCrossValidatorWifi.java35 import com.google.android.chre.nanoapp.proto.ChreCrossValidationWifi.Step;
65 AtomicReference<Step> mStep = new AtomicReference<Step>(Step.INIT);
114 sendStepStartMessage(Step.CAPABILITIES); in validate()
121 sendStepStartMessage(Step.SETUP); in validate()
130 sendStepStartMessage(Step.VALIDATE); in validate()
144 private void sendStepStartMessage(Step step) { in sendStepStartMessage()
165 private NanoAppMessage makeStepStartMessage(Step step) { in makeStepStartMessage()
254 if (mStep.get() == Step.SETUP || mStep.get() == Step.VALIDATE) { in parseDataFromNanoAppMessage()
266 if (mStep.get() != Step.CAPABILITIES) { in parseDataFromNanoAppMessage()
/system/chre/apps/test/common/proto/
Dchre_audio_concurrency_test.proto31 enum Step { enum
41 optional Step step = 1;
Dchre_settings_test.proto45 enum Step { enum
62 optional Step step = 3 [default = START];
Dchre_cross_validation_wifi.proto36 enum Step { enum
49 optional Step step = 1;
/system/chre/java/test/audio_concurrency/src/com/google/android/chre/test/audioconcurrency/
DContextHubAudioConcurrencyTestExecutor.java136 sendTestCommandMessage(ChreAudioConcurrencyTest.TestCommand.Step.ENABLE_AUDIO); in run()
149 sendTestCommandMessage(ChreAudioConcurrencyTest.TestCommand.Step.VERIFY_AUDIO_RESUME); in run()
202 private void sendTestCommandMessage(ChreAudioConcurrencyTest.TestCommand.Step step) { in sendTestCommandMessage()
/system/unwinding/libunwindstack/
DElfInterfaceArm.cpp103 bool ElfInterfaceArm::Step(uint64_t pc, Regs* regs, Memory* process_memory, bool* finished, in Step() function in unwindstack::ElfInterfaceArm
109 return ElfInterface32::Step(pc, regs, process_memory, finished, is_signal_frame) || in Step()
DLocalUnwinder.cpp104 } else if (!elf->Step(step_pc, regs.get(), process_memory_.get(), &finished, in Unwind()
DElfInterfaceArm.h75 bool Step(uint64_t pc, Regs* regs, Memory* process_memory, bool* finished,
DElfInterface.cpp453 bool ElfInterface::Step(uint64_t pc, Regs* regs, Memory* process_memory, bool* finished, in Step() function in unwindstack::ElfInterface
462 debug_frame->Step(pc, regs, process_memory, finished, is_signal_frame)) { in Step()
468 if (eh_frame != nullptr && eh_frame->Step(pc, regs, process_memory, finished, is_signal_frame)) { in Step()
473 gnu_debugdata_interface_->Step(pc, regs, process_memory, finished, is_signal_frame)) { in Step()
DElf.cpp194 bool Elf::Step(uint64_t rel_pc, Regs* regs, Memory* process_memory, bool* finished, in Step() function in unwindstack::Elf
202 return interface_->Step(rel_pc, regs, process_memory, finished, is_signal_frame); in Step()
DUnwinder.cpp262 } else if (elf->Step(step_pc, regs_, process_memory_.get(), &finished, in Unwind()
DDwarfSection.cpp40 bool DwarfSection::Step(uint64_t pc, Regs* regs, Memory* process_memory, bool* finished, in Step() function in unwindstack::DwarfSection
/system/unwinding/libunwindstack/include/unwindstack/
DElf.h64 bool Step(uint64_t rel_pc, Regs* regs, Memory* process_memory, bool* finished,
DDwarfSection.h110 bool Step(uint64_t pc, Regs* regs, Memory* process_memory, bool* finished, bool* is_signal_frame);
DElfInterface.h88 virtual bool Step(uint64_t rel_pc, Regs* regs, Memory* process_memory, bool* finished,
/system/iorap/src/db/
Dmodels.h176 int Step() { in Step() function
181 bool Step(int expected) { in Step() function
182 int rc = Step(); in Step()
307 if (!stmt.Step(SQLITE_DONE)) { in Insert()
333 if (!stmt.Step(SQLITE_DONE)) { in ExecuteOnce()
342 int rc = stmt.Step(); in SelectOnce()
/system/chre/java/test/settings/src/com/google/android/chre/test/setting/
DContextHubSettingsTestExecutor.java150 .setStep(ChreSettingsTest.TestCommand.Step.SETUP).build(); in setupTestAssertSuccess()
/system/core/fastboot/fuzzy_fastboot/
DREADME.md292 ### 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/
Dandroid_application_profiling.md61 Step 1: Add android::debuggable="true" in AndroidManifest.xml to enable profiling.
67 Step 2: Add wrap.sh in lib/`arch` directories. wrap.sh runs the app without passing any debug flags
/system/core/init/
DREADME.md719 3. Step 2 is repeated for `/system_ext/etc/init`, `/vendor/etc/init`, `/odm/etc/init`,