/foundation/multimedia/media_library/frameworks/innerkitsimpl/test/unittest/medialibrary_tool/include/command/ |
H A D | command.h | 24 class Command { class 26 Command() = default; 27 virtual ~Command() = default; 28 Command(const Command &command) = delete; 29 Command(Command &&command) = delete; 30 Command &operator=(const Command &command) = delete; 31 Command [all...] |
H A D | query_command_v10.h | 22 class QueryCommandV10 : public Command {
|
H A D | send_command_v10.h | 22 class SendCommandV10 : public Command {
|
H A D | list_command_v10.h | 22 class ListCommandV10 : public Command {
|
H A D | recv_command_v10.h | 22 class RecvCommandV10 : public Command {
|
/foundation/distributeddatamgr/pasteboard/services/dfx/src/ |
H A D | command.cpp | 20 Command::Command(const std::vector<std::string> &argsFormat, const std::string &help, const Command::Action &action) in Command() function in OHOS::MiscServices::Command 25 Command::Command(const std::vector<std::string> &argsFormat, const std::string &help) in Command() function in OHOS::MiscServices::Command 30 std::string Command::ShowHelp() in ShowHelp() 35 bool Command::DoAction(const std::vector<std::string> &input, std::string &output) in DoAction() 40 std::string Command::GetOption() in GetOption() 45 std::string Command::GetFormat() in GetFormat()
|
H A D | command.h | 25 class Command { class 28 explicit Command() = default; 29 Command(const std::vector<std::string> &argsFormat, const std::string &help, const Action &action); 30 Command(const std::vector<std::string> &argsFormat, const std::string &help); 31 virtual ~Command() = default;
|
H A D | pasteboard_dump_helper.h | 31 void RegisterCommand(std::shared_ptr<Command> &cmd); 35 std::map<std::string, std::shared_ptr<Command>> cmdHandler;
|
/foundation/distributedhardware/distributed_camera/services/cameraservice/base/test/unittest/common/base/ |
H A D | dcamera_event_cmd_test.cpp | 36 "Command": "STATE_NOTIFY", 43 "Command": "STATE_NOTIFY", 49 "Command": "STATE_NOTIFY", 56 "Command": "STATE_NOTIFY", 69 "Command": 0, 76 "Command": "STATE_NOTIFY" 82 "Command": "STATE_NOTIFY", 89 "Command": "STATE_NOTIFY", 96 "Command": "STATE_NOTIFY", 103 "Command" [all...] |
H A D | dcamera_metadata_setting_cmd_test.cpp | 36 "Command": "UPDATE_METADATA", 43 "Command": "UPDATE_METADATA", 49 "Command": "UPDATE_METADATA", 56 "Command": "UPDATE_METADATA", 69 "Command": 0, 76 "Command": "UPDATE_METADATA" 82 "Command": "UPDATE_METADATA", 89 "Command": "UPDATE_METADATA", 96 "Command": "UPDATE_METADATA", 103 "Command" [all...] |
H A D | dcamera_capture_info_cmd_test.cpp | 36 "Command": "CAPTURE", 47 "Command": "CAPTURE", 57 "Command": "CAPTURE", 68 "Command": "CAPTURE", 89 "Command": 0, 100 "Command": "CAPTURE", 106 "Command": "CAPTURE", 117 "Command": "CAPTURE", 128 "Command": "CAPTURE", 139 "Command" [all...] |
H A D | dcamera_channel_info_cmd_test.cpp | 36 "Command": "CHANNEL_NEG", 43 "Command": "CHANNEL_NEG", 49 "Command": "CHANNEL_NEG", 56 "Command": "CHANNEL_NEG", 69 "Command": 0, 76 "Command": "CHANNEL_NEG" 82 "Command": "CHANNEL_NEG", 89 "Command": "CHANNEL_NEG", 96 "Command": "CHANNEL_NEG", 103 "Command" [all...] |
H A D | dcamera_open_info_cmd_test.cpp | 54 "Command": "OPEN_CHANNEL", 60 "Command": "OPEN_CHANNEL", 67 "Command": "OPEN_CHANNEL", 73 "Command": "OPEN_CHANNEL", 80 "Command": "OPEN_CHANNEL", 93 "Command": 0, 100 "Command": "OPEN_CHANNEL" 106 "Command": "OPEN_CHANNEL", 113 "Command": "OPEN_CHANNEL",
|
H A D | dcamera_info_cmd_test.cpp | 36 "Command": "GET_INFO", 43 "Command": "GET_INFO", 49 "Command": "GET_INFO", 56 "Command": "GET_INFO", 69 "Command": 0, 76 "Command": "GET_INFO" 82 "Command": "GET_INFO", 89 "Command": "GET_INFO",
|
H A D | dcamera_protocol_test.cpp | 48 "Command": "CAPTURE", 59 "Command": "CHANNEL_NEG", 66 "Command": "STATE_NOTIFY", 73 "Command": "GET_INFO", 80 "Command": "UPDATE_METADATA",
|
/foundation/multimedia/camera_framework/services/deferred_processing_service/src/base/command_server/ |
H A D | command.cpp | 23 Command::Command() in Command() function in OHOS::CameraStandard::DeferredProcessing::Command 28 Command::~Command() in ~Command() 33 int32_t Command::Do() in Do()
|
/foundation/multimedia/camera_framework/services/deferred_processing_service/include/base/ |
H A D | dps.h | 33 template <typename Command, typename Func, typename... Args> 36 auto cmd = std::make_shared<Command>(std::forward<Args>(args)...); in SendCommandHelp() 55 template <typename Command, typename... Args> 58 return SendCommandHelp<Command>(&CommandServer::SendCommand, std::forward<Args>(args)...); in DPS_SendCommand() 69 template <typename Command, typename... Args> 72 return SendCommandHelp<Command>(&CommandServer::SendUrgentCommand, std::forward<Args>(args)...); in DPS_SendUrgentCommand()
|
/foundation/communication/dsoftbus/core/connection/wifi_direct_cpp/ |
H A D | wifi_direct_scheduler.h | 46 template<typename Command> 47 void ProcessNegotiateData(const std::string &remoteDeviceId, Command &command) in ProcessNegotiateData() 57 it->second->SendEvent(std::make_shared<Command>(command)); in ProcessNegotiateData() 62 commandList_.push_back(std::make_shared<Command>(command)); in ProcessNegotiateData() 69 commandList_.push_back(std::make_shared<Command>(command)); in ProcessNegotiateData() 85 executor->SendEvent(std::make_shared<Command>(command)); in ProcessNegotiateData() 105 template<typename Command> 106 void QueueCommandFront(Command &command) in QueueCommandFront() 110 commandList_.push_front(std::make_shared<Command>(command)); in QueueCommandFront() 113 template<typename Command> [all...] |
/foundation/multimedia/camera_framework/services/deferred_processing_service/include/base/command_server/ |
H A D | command.h | 29 class Command { class 31 Command(); 32 virtual ~Command(); 35 * @brief Get Command Name 37 * @return Command Name 42 * @brief Provided for the invocation of Command by the CommandServer, 52 * @brief The action executed by Command needs to be overridden by a derived class.
|
H A D | command_server.h | 25 using CmdSharedPtr = std::shared_ptr<Command>;
|
H A D | command_server_impl.h | 25 using CmdSharedPtr = std::shared_ptr<Command>;
|
/foundation/multimedia/media_library/frameworks/innerkitsimpl/test/unittest/medialibrary_tool/src/command/ |
H A D | command.cpp | 27 std::unique_ptr<Command> Command::Create(const ExecEnv &env) in Create()
|
/foundation/multimedia/media_library/frameworks/innerkitsimpl/test/unittest/medialibrary_tool/src/ |
H A D | control_main.cpp | 78 std::unique_ptr<Command> cmd = Command::Create(env); in Main()
|
/foundation/multimedia/camera_framework/services/deferred_processing_service/include/post_processor/command/ |
H A D | service_died_command.h | 24 class ServiceDiedCommand : public Command {
|
/foundation/multimedia/camera_framework/services/deferred_processing_service/include/event_monitor/command/ |
H A D | event_status_change_command.h | 25 class EventStatusChangeCommand : public Command {
|