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.hpp62 class SelectTrieNode class
65 SelectTrieNode() = default;
67 const SelectTrieNode* find(const std::string& jsonKey) const in find()
79 SelectTrieNode* emplace(std::string_view jsonKey) in emplace()
81 auto [it, _] = children.emplace(jsonKey, SelectTrieNode{}); in emplace()
106 std::map<std::string, SelectTrieNode, std::less<>> children;
143 SelectTrieNode* currNode = &root; in insertNode()
164 SelectTrieNode root;
934 const SelectTrieNode& currNode) in recursiveSelect()
946 const SelectTrieNode* nextNode = currNode.find(it->first); in recursiveSelect()
[all …]
/openbmc/bmcweb/test/redfish-core/include/utils/
H A Dquery_param_test.cpp223 const SelectTrieNode* child = query.selectTrie.root.find("foo"); in TEST()