Lines Matching refs:EngineCommand
124 queueCommand("ClientInterface", EngineCommand::Type::BROADCAST_CONFIG); in processClientCommand()
131 queueCommand("ClientInterface", EngineCommand::Type::BROADCAST_START_RUN); in processClientCommand()
139 queueCommand("ClientInterface", EngineCommand::Type::BROADCAST_INITIATE_STOP); in processClientCommand()
160 queueCommand("ClientInterface", EngineCommand::Type::RESET_CONFIG); in processClientCommand()
185 queueCommand("ClientInterface", EngineCommand::Type::RELEASE_DEBUGGER); in processClientCommand()
188 queueCommand("ClientInterface", EngineCommand::Type::READ_PROFILING); in processClientCommand()
231 queueCommand("PrebuiltGraph", EngineCommand::Type::BROADCAST_INITIATE_STOP); in DispatchGraphTerminationMessage()
540 this->queueCommand(source, EngineCommand::Type::POLL_COMPLETE); in populateStreamManagers()
635 std::queue<EngineCommand> empty; in processCommands()
639 EngineCommand ec = mCommandQueue.front(); in processCommands()
642 case EngineCommand::Type::BROADCAST_CONFIG: in processCommands()
646 case EngineCommand::Type::BROADCAST_START_RUN: in processCommands()
650 case EngineCommand::Type::BROADCAST_INITIATE_STOP: in processCommands()
657 case EngineCommand::Type::POLL_COMPLETE: in processCommands()
675 case EngineCommand::Type::RESET_CONFIG: in processCommands()
678 case EngineCommand::Type::RELEASE_DEBUGGER: in processCommands()
688 case EngineCommand::Type::READ_PROFILING: in processCommands()
714 void DefaultEngine::queueCommand(std::string source, EngineCommand::Type type) { in queueCommand()
715 mCommandQueue.push(EngineCommand(source, type)); in queueCommand()