Searched refs:KernelConfigKey (Results 1 – 4 of 4) sorted by relevance
31 struct KernelConfigKey : public std::string { struct32 KernelConfigKey() : std::string() {} in KernelConfigKey() function33 KernelConfigKey(const std::string &other) : std::string(other) {} in KernelConfigKey() function34 KernelConfigKey(std::string &&other) : std::string(std::forward<std::string>(other)) {} in KernelConfigKey() function37 using KernelConfig = std::pair<KernelConfigKey, KernelConfigTypedValue>;
65 bool parse(const std::string &s, KernelConfigKey *key);
182 bool parse(const std::string &s, KernelConfigKey *key) { in parse()
497 struct KernelConfigKeyConverter : public XmlTextConverter<KernelConfigKey> {