Home
last modified time | relevance | path

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

/developtools/profiler/device/services/plugin_service/src/
Dplugin_command_builder.h23 using GetCommandResponsePtr = STD_PTR(shared, GetCommandResponse); variable
31GetCommandResponsePtr BuildCreateSessionCmd(const ProfilerPluginConfig& config, uint32_t buffer_si…
32 GetCommandResponsePtr BuildDestroySessionCmd(uint32_t pluginId);
33GetCommandResponsePtr BuildStartSessionCmd(const ProfilerPluginConfig& config, uint32_t pluginId);
34 GetCommandResponsePtr BuildStopSessionCmd(uint32_t pluginId);
35 GetCommandResponsePtr BuildRefreshSessionCmd(uint32_t pluginId);
40 std::map<uint32_t, GetCommandResponsePtr> commandHistory_;
Dplugin_command_builder.cpp28 GetCommandResponsePtr PluginCommandBuilder::BuildCreateSessionCmd(const ProfilerPluginConfig& confi… in BuildCreateSessionCmd()
44 GetCommandResponsePtr PluginCommandBuilder::BuildDestroySessionCmd(uint32_t pluginId) in BuildDestroySessionCmd()
59 GetCommandResponsePtr PluginCommandBuilder::BuildStartSessionCmd(const ProfilerPluginConfig& config… in BuildStartSessionCmd()
76 GetCommandResponsePtr PluginCommandBuilder::BuildStopSessionCmd(uint32_t pluginId) in BuildStopSessionCmd()
91 GetCommandResponsePtr PluginCommandBuilder::BuildRefreshSessionCmd(uint32_t pluginId) in BuildRefreshSessionCmd()
Dplugin_service_impl.h24 using GetCommandResponsePtr = STD_PTR(shared, ::GetCommandResponse); variable
40 bool PushCommand(SocketContext& context, GetCommandResponsePtr command);
Dplugin_service_impl.cpp91 bool PluginServiceImpl::PushCommand(SocketContext& context, GetCommandResponsePtr command) in PushCommand()