Lines Matching refs:GrpcGraph
68 GrpcGraph::~GrpcGraph() { in ~GrpcGraph()
72 PrebuiltGraphState GrpcGraph::GetGraphState() const { in GetGraphState()
77 Status GrpcGraph::GetStatus() const { in GetStatus()
82 std::string GrpcGraph::GetErrorMessage() const { in GetErrorMessage()
87 Status GrpcGraph::initialize(const std::string& address, in initialize()
124 Status GrpcGraph::handleConfigPhase(const runner::ClientConfig& e) { in handleConfigPhase()
172 Status GrpcGraph::handleExecutionPhase(const runner::RunnerEvent& e) { in handleExecutionPhase()
222 Status GrpcGraph::handleStopWithFlushPhase(const runner::RunnerEvent& e) { in handleStopWithFlushPhase()
265 Status GrpcGraph::handleStopImmediatePhase(const runner::RunnerEvent& e) { in handleStopImmediatePhase()
306 Status GrpcGraph::handleResetPhase(const runner::RunnerEvent& e) { in handleResetPhase()
341 Status GrpcGraph::SetInputStreamData(int /*streamIndex*/, int64_t /*timestamp*/, in SetInputStreamData()
347 Status GrpcGraph::SetInputStreamPixelData(int /*streamIndex*/, int64_t /*timestamp*/, in SetInputStreamPixelData()
353 Status GrpcGraph::StartGraphProfiling() { in StartGraphProfiling()
381 Status GrpcGraph::StopGraphProfiling() { in StopGraphProfiling()
405 std::string GrpcGraph::GetDebugInfo() { in GetDebugInfo()
425 void GrpcGraph::dispatchPixelData(int streamId, int64_t timestamp_us, in dispatchPixelData()
433 void GrpcGraph::dispatchSerializedData(int streamId, int64_t timestamp_us, in dispatchSerializedData()
442 void GrpcGraph::dispatchGraphTerminationMessage(Status status, std::string&& errorMessage) { in dispatchGraphTerminationMessage()
456 auto prebuiltGraph = std::make_unique<GrpcGraph>(); in GetRemoteGraphFromAddress()