Home
last modified time | relevance | path

Searched refs:isPhaseEntry (Results 1 – 13 of 13) sorted by relevance

/packages/services/Car/cpp/computepipe/tests/fuzz/
DVideoInputManagerFuzzer.cpp40 MOCK_CONST_METHOD0(isPhaseEntry, bool());
86 bool isPhaseEntry = fdp.ConsumeBool(); in LLVMFuzzerTestOneInput() local
87 if (isTransitionComplete != isPhaseEntry) { in LLVMFuzzerTestOneInput()
92 ON_CALL((e), isPhaseEntry()).WillByDefault([isPhaseEntry]() { in LLVMFuzzerTestOneInput()
93 return isPhaseEntry; in LLVMFuzzerTestOneInput()
95 } else if (isPhaseEntry) { in LLVMFuzzerTestOneInput()
99 EXPECT_CALL((e), isPhaseEntry()).WillOnce([isPhaseEntry]() { in LLVMFuzzerTestOneInput()
100 return isPhaseEntry; in LLVMFuzzerTestOneInput()
104 if (res == Status::SUCCESS && !isTransitionComplete && isPhaseEntry) { in LLVMFuzzerTestOneInput()
/packages/services/Car/cpp/computepipe/runner/include/
DRunnerComponent.h47 virtual bool isPhaseEntry() const;
69 bool isPhaseEntry() const override { in isPhaseEntry() function
DEventGenerator.h40 bool isPhaseEntry() const override;
/packages/services/Car/cpp/computepipe/runner/stream_manager/
DSemanticManager.cpp90 if (mState == CONFIG_DONE && e.isPhaseEntry()) { in handleExecutionPhase()
119 if (mState == RUNNING && e.isPhaseEntry()) { in handleStopWithFlushPhase()
DPixelStreamManager.cpp252 if (mState == CONFIG_DONE && e.isPhaseEntry()) { in handleExecutionPhase()
285 if (mState == RUNNING && e.isPhaseEntry()) { in handleStopImmediatePhase()
/packages/services/Car/cpp/computepipe/tests/runner/client_interface/
DMockRunnerEvent.h32 MOCK_CONST_METHOD0(isPhaseEntry, bool());
DClientInterfaceTest.cc318 EXPECT_CALL(event, isPhaseEntry()).Times(AnyNumber()).WillRepeatedly(Return(false)); in TEST_F()
355 EXPECT_CALL(event, isPhaseEntry()).Times(AnyNumber()).WillRepeatedly(Return(false)); in TEST_F()
/packages/services/Car/cpp/computepipe/runner/
DEventGenerator.cpp25 bool DefaultEvent::isPhaseEntry() const { in isPhaseEntry() function in android::automotive::computepipe::runner::generator::DefaultEvent
DRunnerComponent.cpp26 bool RunnerEvent::isPhaseEntry() const { in isPhaseEntry() function in android::automotive::computepipe::runner::RunnerEvent
/packages/services/Car/cpp/computepipe/runner/input_manager/
DVideoInputManager.cpp46 if (e.isPhaseEntry()) { in handleExecutionPhase()
/packages/services/Car/cpp/computepipe/tests/runner/graph/
DGrpcGraphTest.cpp78 bool isPhaseEntry() const override { return true; } in isPhaseEntry() function in android::automotive::computepipe::graph::__anon5148c1330111::TestRunnerEvent
/packages/services/Car/cpp/computepipe/runner/debug_display_manager/
DEvsDisplayManager.cpp176 if (e.isPhaseEntry()) { in handleExecutionPhase()
/packages/services/Car/cpp/computepipe/runner/client_interface/
DDebuggerImpl.cpp223 if (e.isPhaseEntry()) { in handleResetPhase()