Home
last modified time | relevance | path

Searched refs:CommandServer (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/multimedia/camera_framework/services/deferred_processing_service/src/base/command_server/
H A Dcommand_server.cpp23 CommandServer::CommandServer() : server_(nullptr) in CommandServer() function in OHOS::CameraStandard::DeferredProcessing::CommandServer
28 CommandServer::~CommandServer() in ~CommandServer()
34 int32_t CommandServer::Initialize(const std::string& cmdServerName) in Initialize()
42 int32_t CommandServer::SendCommand(const CmdSharedPtr& cmd) in SendCommand()
48 int32_t CommandServer::SendUrgentCommand(const CmdSharedPtr& cmd) in SendUrgentCommand()
54 void CommandServer::SetThreadPriority(int priority) in SetThreadPriority()
59 int32_t CommandServer::GetThreadPriority() const in GetThreadPriority()
/ohos5.0/foundation/multimedia/camera_framework/services/deferred_processing_service/include/base/command_server/
H A Dcommand_server.h26 class CommandServer {
28 CommandServer();
29 ~CommandServer();
/ohos5.0/foundation/multimedia/camera_framework/services/deferred_processing_service/include/base/
H A Ddps.h29 std::shared_ptr<CommandServer> DPS_GetCommandServer();
58 return SendCommandHelp<Command>(&CommandServer::SendCommand, std::forward<Args>(args)...); in DPS_SendCommand()
72 return SendCommandHelp<Command>(&CommandServer::SendUrgentCommand, std::forward<Args>(args)...); in DPS_SendUrgentCommand()
/ohos5.0/foundation/multimedia/camera_framework/services/deferred_processing_service/src/base/
H A Ddps.cpp26 std::shared_ptr<CommandServer> server;
42 g_dpsInfo.server = std::make_shared<CommandServer>(); in DPS_Initialize()
73 std::shared_ptr<CommandServer> DPS_GetCommandServer() in DPS_GetCommandServer()