Home
last modified time | relevance | path

Searched refs:mEngine (Results 1 – 12 of 12) sorted by relevance

/packages/apps/WallpaperPicker2/src/com/android/wallpaper/util/
DWallpaperConnection.java49 private IWallpaperEngine mEngine; field in WallpaperConnection
96 if (mEngine != null) { in disconnect()
98 mEngine.destroy(); in disconnect()
102 mEngine = null; in disconnect()
140 mEngine = null; in onServiceDisconnected()
150 mEngine = engine; in attachEngine()
172 mEngine.setDisplayPadding( in updateEnginePosition()
186 return mEngine; in getEngine()
216 if (mEngine != null) { in updatePreviewPosition()
237 if (mEngine != null && visible != mIsEngineVisible) { in setEngineVisibility()
[all …]
/packages/services/Car/computepipe/tests/runner/client_interface/
DClientInterfaceTest.cc107 mAidlClient = std::make_unique<AidlClient>(options, mEngine); in SetUp()
128 std::shared_ptr<tests::MockEngine> mEngine = std::make_unique<tests::MockEngine>(); member in android::automotive::computepipe::runner::client_interface::aidl_client::__anon68bfb8ac0111::ClientInterface
137 EXPECT_CALL(*mEngine, processClientConfigUpdate(_)) in TEST_F()
176 EXPECT_CALL(*mEngine, processClientConfigUpdate(_)) in TEST_F()
220 EXPECT_CALL(*mEngine, processClientCommand(_)) in TEST_F()
253 EXPECT_CALL(*mEngine, processClientCommand(_)) in TEST_F()
287 EXPECT_CALL(*mEngine, processClientConfigUpdate(_)).Times(0); in TEST_F()
288 EXPECT_CALL(*mEngine, processClientCommand(_)).Times(0); in TEST_F()
301 EXPECT_CALL(*mEngine, processClientConfigUpdate(_)).Times(0); in TEST_F()
302 EXPECT_CALL(*mEngine, processClientCommand(_)).Times(0); in TEST_F()
[all …]
/packages/services/Car/computepipe/runner/client_interface/
DAidlClientImpl.cpp211 Status status = mEngine->processClientConfigUpdate(configurationCommand); in setPipeInputSource()
223 Status status = mEngine->processClientConfigUpdate(configurationCommand); in setPipeOffloadOptions()
235 Status status = mEngine->processClientConfigUpdate(configurationCommand); in setPipeTermination()
282 Status status = mEngine->processClientConfigUpdate(configurationCommand); in setPipeOutputConfig()
299 Status status = mEngine->processClientCommand(controlCommand); in applyPipeConfigs()
311 Status status = mEngine->processClientCommand(controlCommand); in resetPipeConfigs()
319 Status status = mEngine->processClientCommand(controlCommand); in startPipe()
327 Status status = mEngine->processClientCommand(controlCommand); in stopPipe()
338 return ToNdkStatus(mEngine->freePacket(bufferId, streamId)); in doneWithPacket()
358 Status status = mEngine->processClientCommand(controlCommand); in releaseRunner()
DDebuggerImpl.cpp99 std::shared_ptr<ClientEngineInterface> engineSp = mEngine.lock(); in setPipeProfileOptions()
114 std::shared_ptr<ClientEngineInterface> engineSp = mEngine.lock(); in startPipeProfiling()
125 std::shared_ptr<ClientEngineInterface> engineSp = mEngine.lock(); in stopPipeProfiling()
176 std::shared_ptr<ClientEngineInterface> engineSp = mEngine.lock(); in releaseDebugger()
DDebuggerImpl.h43 : mEngine(engine), mGraphOptions(graphOptions) {} in DebuggerImpl()
64 std::weak_ptr<ClientEngineInterface> mEngine;
DAidlClientImpl.h43 : mGraphOptions(graphOptions), mEngine(engine) { in AidlClientImpl()
95 std::shared_ptr<ClientEngineInterface> mEngine; variable
/packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
DLiveWallpaperPreview.java563 if (!handled && mWallpaperConnection != null && mWallpaperConnection.mEngine != null) { in dispatchTouchEvent()
566 mWallpaperConnection.mEngine.dispatchPointer(dup); in dispatchTouchEvent()
573 mWallpaperConnection.mEngine.dispatchWallpaperCommand( in dispatchTouchEvent()
578 mWallpaperConnection.mEngine.dispatchWallpaperCommand( in dispatchTouchEvent()
591 IWallpaperEngine mEngine; field in LiveWallpaperPreview.WallpaperConnection
614 if (mEngine != null) { in disconnect()
616 mEngine.destroy(); in disconnect()
620 mEngine = null; in disconnect()
650 mEngine = null; in onServiceDisconnected()
659 mEngine = engine; in attachEngine()
[all …]
/packages/services/Car/computepipe/runner/stream_manager/
DSemanticManager.cpp70 mEngine = engine; in setEngineInterface()
76 mEngine->notifyEndOfStream(); in notifyEndOfStream()
81 if (!mEngine) { in setMaxInFlightPackets()
153 if (mEngine == nullptr) { in queuePacket()
161 mEngine->dispatchPacket(memHandle); in queuePacket()
DPixelStreamManager.cpp134 mEngine = engine; in setEngineInterface()
204 if (mEngine == nullptr) { in queuePacket()
240 Status status = mEngine->dispatchPacket(memHandle); in queuePacket()
242 mEngine->notifyError(std::string(__func__) + ":" + std::to_string(__LINE__) + in queuePacket()
289 mEngine->notifyEndOfStream(); in handleStopImmediatePhase()
DSemanticManager.h85 std::shared_ptr<StreamEngineInterface> mEngine; variable
DPixelStreamManager.h98 std::shared_ptr<StreamEngineInterface> mEngine; variable
/packages/services/Car/computepipe/tests/runner/graph/
DGrpcGraphTest.cpp234 std::shared_ptr<PrebuiltEngineInterfaceImpl> mEngine; member in android::automotive::computepipe::graph::__anon6c8fcc7a0111::GrpcGraphTest
246 mEngine = std::make_shared<PrebuiltEngineInterfaceImpl>(); in SetUp()
247 mGrpcGraph = GetRemoteGraphFromAddress(mAddress, mEngine); in SetUp()
255 bool waitForTermination() { return mEngine->waitForTermination(); } in waitForTermination()
257 int numPacketsForStream(int streamId) { return mEngine->numPacketsForStream(streamId); } in numPacketsForStream()