Lines Matching refs:categories
63 inline void Enable(const std::set<std::string>& categories);
64 inline void Disable(const std::set<std::string>& categories);
101 AgentWriterHandle AddClient(const std::set<std::string>& categories,
104 // A handle that is only used for managing the default categories
109 // Returns a comma-separated list of enabled categories.
130 void Enable(int id, const std::set<std::string>& categories);
131 void Disable(int id, const std::set<std::string>& categories);
176 void AgentWriterHandle::Enable(const std::set<std::string>& categories) {
177 if (agent_ != nullptr) agent_->Enable(id_, categories);
180 void AgentWriterHandle::Disable(const std::set<std::string>& categories) {
181 if (agent_ != nullptr) agent_->Disable(id_, categories);