/packages/apps/WallpaperPicker2/src/com/android/wallpaper/util/ |
D | WallpaperConnection.java | 114 @Nullable private IWallpaperEngine mEngine; field in WallpaperConnection 195 if (mEngine != null) { in disconnect() 197 mEngine.destroy(); in disconnect() 205 mEngine = null; in disconnect() 267 mEngine = null; in onServiceDisconnected() 277 mEngine = engine; in attachEngine() 291 mEngine.resizePreview(new Rect(0, 0, displayMetrics.x, displayMetrics.y)); in attachEngine() 295 mEngine.requestWallpaperColors(); in attachEngine() 314 return mEngine; in getEngine() 384 if (mEngine != null && mEngineReady) { in setWallpaperFlags() [all …]
|
/packages/modules/Uwb/service/java/com/android/server/uwb/ |
D | UwbControlee.java | 37 private final UwbFilterEngine mEngine; field in UwbControlee 53 mEngine = engine; in UwbControlee() 76 if (mEngine != null) { in close() 77 mEngine.close(); in close() 87 if (mEngine == null) { in filterMeasurement() 142 mEngine.add(sv, nowMs); in filterMeasurement() 144 SphericalVector.Annotated engineResult = mEngine.compute(nowMs); in filterMeasurement()
|
/packages/services/Car/cpp/computepipe/tests/runner/client_interface/ |
D | ClientInterfaceTest.cc | 107 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::__anonc26a17be0111::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/cpp/computepipe/runner/client_interface/ |
D | AidlClientImpl.cpp | 212 Status status = mEngine->processClientConfigUpdate(configurationCommand); in setPipeInputSource() 224 Status status = mEngine->processClientConfigUpdate(configurationCommand); in setPipeOffloadOptions() 236 Status status = mEngine->processClientConfigUpdate(configurationCommand); in setPipeTermination() 283 Status status = mEngine->processClientConfigUpdate(configurationCommand); in setPipeOutputConfig() 300 Status status = mEngine->processClientCommand(controlCommand); in applyPipeConfigs() 312 Status status = mEngine->processClientCommand(controlCommand); in resetPipeConfigs() 320 Status status = mEngine->processClientCommand(controlCommand); in startPipe() 328 Status status = mEngine->processClientCommand(controlCommand); in stopPipe() 339 return ToNdkStatus(mEngine->freePacket(bufferId, streamId)); in doneWithPacket() 359 Status status = mEngine->processClientCommand(controlCommand); in releaseRunner()
|
D | DebuggerImpl.cpp | 99 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()
|
D | DebuggerImpl.h | 43 : mEngine(engine), mGraphOptions(graphOptions) {} in DebuggerImpl() 64 std::weak_ptr<ClientEngineInterface> mEngine;
|
D | AidlClientImpl.h | 43 : mGraphOptions(graphOptions), mEngine(engine) { in AidlClientImpl() 95 std::shared_ptr<ClientEngineInterface> mEngine; variable
|
/packages/services/Car/cpp/computepipe/runner/stream_manager/ |
D | SemanticManager.cpp | 70 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()
|
D | PixelStreamManager.cpp | 134 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()
|
D | SemanticManager.h | 85 std::shared_ptr<StreamEngineInterface> mEngine; variable
|
D | PixelStreamManager.h | 98 std::shared_ptr<StreamEngineInterface> mEngine; variable
|
/packages/services/Car/cpp/computepipe/tests/runner/graph/ |
D | GrpcGraphTest.cpp | 51 std::shared_ptr<PrebuiltEngineInterfaceImpl> mEngine; member in android::automotive::computepipe::graph::__anon7f52478c0111::GrpcGraphTest 63 mEngine = std::make_shared<PrebuiltEngineInterfaceImpl>(); in SetUp() 64 mGrpcGraph = GetRemoteGraphFromAddress(mAddress, mEngine); in SetUp() 72 bool waitForTermination() { return mEngine->waitForTermination(); } in waitForTermination() 74 int numPacketsForStream(int streamId) { return mEngine->numPacketsForStream(streamId); } in numPacketsForStream()
|
/packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/ |
D | LiveWallpaperPreview.java | 564 if (!handled && mWallpaperConnection != null && mWallpaperConnection.mEngine != null) { in dispatchTouchEvent() 567 mWallpaperConnection.mEngine.dispatchPointer(dup); in dispatchTouchEvent() 574 mWallpaperConnection.mEngine.dispatchWallpaperCommand( in dispatchTouchEvent() 579 mWallpaperConnection.mEngine.dispatchWallpaperCommand( in dispatchTouchEvent() 592 IWallpaperEngine mEngine; field in LiveWallpaperPreview.WallpaperConnection 617 if (mEngine != null) { in disconnect() 619 mEngine.destroy(); in disconnect() 623 mEngine = null; in disconnect() 659 mEngine = null; in onServiceDisconnected() 668 mEngine = engine; in attachEngine() [all …]
|
/packages/services/Car/cpp/computepipe/runner/input_manager/ |
D | VideoDecoder.cpp | 56 mEngine(engineInterface), in VideoDecoder() 203 mEngine->notifyInputError(); in decoderThreadFunction() 312 mEngine->notifyInputError(); in readDecodedFrame() 324 mEngine->dispatchInputFrame(mConfig.stream_id(), frameTimeMicros, inputFrame); in readDecodedFrame() 342 mEngine->dispatchInputFrame(mConfig.stream_id(), 0, inputFrame); in sendEosFlag()
|
D | VideoInputManager.cpp | 30 mEngine(inputEngineInterface), in VideoInputManager() 85 mVideoDecoders.emplace_back(std::make_unique<VideoDecoder>(config, mEngine)); in populateDecoders()
|
D | VideoDecoder.h | 73 std::shared_ptr<InputEngineInterface> mEngine; variable
|
/packages/apps/TvSettings/unbundle/java/com/android/tv/settings/unbundle/sdklib/ |
D | TextToSpeechCompat.java | 29 public TextToSpeech.Engine mEngine; field in TextToSpeechCompat.Engine 32 mEngine = engine; in Engine()
|
/packages/services/Car/cpp/computepipe/runner/input_manager/include/ |
D | VideoInputManager.h | 55 std::shared_ptr<InputEngineInterface> mEngine; variable
|
/packages/modules/Connectivity/framework-t/src/android/net/nsd/ |
D | NsdManager.java | 418 private final OffloadEngine mEngine; field in NsdManager.OffloadEngineProxy 422 mEngine = appCb; in OffloadEngineProxy() 427 mExecutor.execute(() -> mEngine.onOffloadServiceUpdated(info)); in onOffloadServiceUpdated() 432 mExecutor.execute(() -> mEngine.onOffloadServiceRemoved(info)); in onOffloadServiceRemoved() 467 if (CollectionUtils.contains(mOffloadEngines, impl -> impl.mEngine == engine)) { in registerOffloadEngine() 501 impl -> impl.mEngine == engine); in unregisterOffloadEngine()
|