Home
last modified time | relevance | path

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

/base/notification/distributed_notification_service/tools/test/unittest/dump/
Dnotification_shell_command_dump_test.cpp214 NotificationShellCommand cmd(argc, argv);
234 NotificationShellCommand cmd(argc, argv);
256 NotificationShellCommand cmd(argc, argv);
279 NotificationShellCommand cmd(argc, argv);
301 NotificationShellCommand cmd(argc, argv);
325 NotificationShellCommand cmd(argc, argv);
347 NotificationShellCommand cmd(argc, argv);
371 NotificationShellCommand cmd(argc, argv);
392 NotificationShellCommand cmd(argc, argv);
414 NotificationShellCommand cmd(argc, argv);
[all …]
/base/notification/distributed_notification_service/tools/dump/src/
Dnotification_shell_command.cpp100 NotificationShellCommand::NotificationShellCommand(int argc, char *argv[]) : ShellCommand(argc, arg… in NotificationShellCommand() function in OHOS::Notification::NotificationShellCommand
103 ErrCode NotificationShellCommand::CreateCommandMap() in CreateCommandMap()
106 {"help", std::bind(&NotificationShellCommand::RunAsHelpCommand, this)}, in CreateCommandMap()
107 {"dump", std::bind(&NotificationShellCommand::RunAsDumpCommand, this)}, in CreateCommandMap()
108 {"setting", std::bind(&NotificationShellCommand::RunAsSettingCommand, this)}, in CreateCommandMap()
113 ErrCode NotificationShellCommand::Init() in Init()
126 void NotificationShellCommand::SetNativeToken() in SetNativeToken()
151 ErrCode NotificationShellCommand::RunAsHelpCommand() in RunAsHelpCommand()
157 ErrCode NotificationShellCommand::RunHelp() in RunHelp()
163 ErrCode NotificationShellCommand::RunAsDumpCommand() in RunAsDumpCommand()
[all …]
Dmain.cpp20 OHOS::Notification::NotificationShellCommand cmd(argc, argv); in main()
/base/notification/distributed_notification_service/tools/dump/include/
Dnotification_shell_command.h24 class NotificationShellCommand : public OHOS::Notification::ShellCommand {
32 NotificationShellCommand(int argc, char *argv[]);
37 ~NotificationShellCommand() override {}; in ~NotificationShellCommand()