Home
last modified time | relevance | path

Searched refs:SelectTrieNode (Results 1 – 2 of 2) sorted by relevance

/openbmc/bmcweb/redfish-core/include/utils/
H A Dquery_param.hpp64 class SelectTrieNode class
67 SelectTrieNode() = default;
69 const SelectTrieNode* find(const std::string& jsonKey) const in find()
81 SelectTrieNode* emplace(std::string_view jsonKey) in emplace()
83 auto [it, _] = children.emplace(jsonKey, SelectTrieNode{}); in emplace()
108 std::map<std::string, SelectTrieNode, std::less<>> children;
145 SelectTrieNode* currNode = &root; in insertNode()
166 SelectTrieNode root;
965 const SelectTrieNode& currNode) in recursiveSelect()
977 const SelectTrieNode* nextNode = currNode.find(it.key()); in recursiveSelect()
[all …]
/openbmc/bmcweb/test/redfish-core/include/utils/
H A Dquery_param_test.cpp230 const SelectTrieNode* child = query.selectTrie.root.find("foo"); in TEST()