Searched refs:g_SubCommandsMap (Results 1 – 1 of 1) sorted by relevance
25 static std::map<std::string, std::unique_ptr<SubCommand>> g_SubCommandsMap; variable168 if (g_SubCommandsMap.count(cmdName) == 0) { in RegisterSubCommand()170 g_SubCommandsMap.insert(std::make_pair(cmdName, std::move(subCommand))); in RegisterSubCommand()181 g_SubCommandsMap.clear(); in ClearSubCommands()186 return g_SubCommandsMap; in GetSubCommands()193 auto found = g_SubCommandsMap.find(cmdName); in FindSubCommand()194 if (found != g_SubCommandsMap.end()) { in FindSubCommand()