Searched refs:engineInterface (Results 1 – 6 of 6) sorted by relevance
/packages/services/Car/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 | 84 std::weak_ptr<PrebuiltEngineInterface> engineInterface) { in initialize() argument 88 mEngineInterface = engineInterface; in initialize() 423 std::shared_ptr<PrebuiltEngineInterface> engineInterface = mEngineInterface.lock(); in dispatchPixelData() local 424 if (engineInterface) { in dispatchPixelData() 425 return engineInterface->DispatchPixelData(streamId, timestamp_us, frame); in dispatchPixelData() 431 std::shared_ptr<PrebuiltEngineInterface> engineInterface = mEngineInterface.lock(); in dispatchSerializedData() local 432 if (engineInterface) { in dispatchSerializedData() 433 return engineInterface->DispatchSerializedData(streamId, timestamp_us, in dispatchSerializedData() 443 std::shared_ptr<PrebuiltEngineInterface> engineInterface = mEngineInterface.lock(); in dispatchGraphTerminationMessage() local 444 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/computepipe/tests/runner/graph/ |
D | LocalPrebuiltGraphTest.cpp | 90 std::shared_ptr<PrebuiltEngineInterface> engineInterface = in TEST() local 93 PrebuiltGraph* graph = GetLocalGraphFromLibrary("libstubgraphimpl.so", engineInterface); in TEST() 102 std::shared_ptr<PrebuiltEngineInterface> engineInterface = in TEST() local 105 PrebuiltGraph* graph = GetLocalGraphFromLibrary("libstubgraphimpl.so", engineInterface); in TEST() 147 std::shared_ptr<PrebuiltEngineInterface> engineInterface = in TEST() local 151 PrebuiltGraph* graph = GetLocalGraphFromLibrary("libstubgraphimpl.so", engineInterface); in TEST()
|
/packages/services/Car/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);
|