Searched refs:engineInterface (Results 1 – 9 of 9) sorted by relevance
/packages/services/Car/cpp/computepipe/runner/graph/ |
D | LocalPrebuiltGraph.cpp | 180 std::weak_ptr<PrebuiltEngineInterface> engineInterface) { in GetPrebuiltGraphFromLibrary() argument 225 if (initialized && engineInterface.lock() == nullptr) { in GetPrebuiltGraphFromLibrary() 249 mPrebuiltGraphInstance->mEngineInterface = engineInterface; in GetPrebuiltGraphFromLibrary() 372 std::shared_ptr<PrebuiltEngineInterface> engineInterface = graph->mEngineInterface.lock(); in OutputStreamCallbackFunction() local 373 if (engineInterface != nullptr) { in OutputStreamCallbackFunction() 374 engineInterface->DispatchSerializedData(streamIndex, timestamp, in OutputStreamCallbackFunction() 385 std::shared_ptr<PrebuiltEngineInterface> engineInterface = graph->mEngineInterface.lock(); in OutputPixelStreamCallbackFunction() local 387 if (engineInterface) { in OutputPixelStreamCallbackFunction() 389 engineInterface->DispatchPixelData(streamIndex, timestamp, frame); in OutputPixelStreamCallbackFunction() 398 std::shared_ptr<PrebuiltEngineInterface> engineInterface = graph->mEngineInterface.lock(); in GraphTerminationCallbackFunction() local [all …]
|
D | GrpcGraph.cpp | 88 std::weak_ptr<PrebuiltEngineInterface> engineInterface) { in initialize() argument 92 mEngineInterface = engineInterface; in initialize() 427 std::shared_ptr<PrebuiltEngineInterface> engineInterface = mEngineInterface.lock(); in dispatchPixelData() local 428 if (engineInterface) { in dispatchPixelData() 429 return engineInterface->DispatchPixelData(streamId, timestamp_us, frame); in dispatchPixelData() 435 std::shared_ptr<PrebuiltEngineInterface> engineInterface = mEngineInterface.lock(); in dispatchSerializedData() local 436 if (engineInterface) { in dispatchSerializedData() 437 return engineInterface->DispatchSerializedData(streamId, timestamp_us, in dispatchSerializedData() 447 std::shared_ptr<PrebuiltEngineInterface> engineInterface = mEngineInterface.lock(); in dispatchGraphTerminationMessage() local 448 if (engineInterface) { in dispatchGraphTerminationMessage() [all …]
|
D | GrpcGraph.h | 51 std::weak_ptr<PrebuiltEngineInterface> engineInterface);
|
D | LocalPrebuiltGraph.h | 58 const std::string& prebuiltLib, std::weak_ptr<PrebuiltEngineInterface> engineInterface);
|
/packages/services/Car/cpp/computepipe/tests/runner/graph/ |
D | LocalPrebuiltGraphTest.cpp | 53 std::shared_ptr<PrebuiltEngineInterface> engineInterface = in TEST() local 56 PrebuiltGraph* graph = GetLocalGraphFromLibrary("libstubgraphimpl.so", engineInterface); in TEST() 65 std::shared_ptr<PrebuiltEngineInterface> engineInterface = in TEST() local 68 PrebuiltGraph* graph = GetLocalGraphFromLibrary("libstubgraphimpl.so", engineInterface); in TEST() 110 std::shared_ptr<PrebuiltEngineInterface> engineInterface = in TEST() local 114 PrebuiltGraph* graph = GetLocalGraphFromLibrary("libstubgraphimpl.so", engineInterface); in TEST()
|
/packages/services/Car/cpp/computepipe/runner/graph/include/ |
D | PrebuiltGraph.h | 81 const std::string& prebuiltLib, std::weak_ptr<PrebuiltEngineInterface> engineInterface); 84 const std::string& address, std::weak_ptr<PrebuiltEngineInterface> engineInterface);
|
/packages/services/Car/cpp/computepipe/tests/fuzz/ |
D | LocalPrebuildGraphFuzzer.cpp | 59 std::shared_ptr<PrebuiltEngineInterface> engineInterface = in LLVMFuzzerTestOneInput() local 62 PrebuiltGraph* graph = GetLocalGraphFromLibrary("libstubgraphimpl.so", engineInterface); in LLVMFuzzerTestOneInput()
|
/packages/services/Car/cpp/computepipe/runner/input_manager/ |
D | VideoDecoder.cpp | 55 std::shared_ptr<InputEngineInterface> engineInterface) : in VideoDecoder() argument 56 mEngine(engineInterface), in VideoDecoder()
|
D | VideoDecoder.h | 37 std::shared_ptr<InputEngineInterface> engineInterface);
|