Home
last modified time | relevance | path

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

/openbmc/bmcweb/http/routing/
H A Dtrie.hpp28 size_t pathParamChild = 0U; member
37 return ruleIndex == 0 && stringParamChild == 0 && pathParamChild == 0; in isSimpleNode()
53 if (node.pathParamChild != 0U) in optimizeNode()
55 optimizeNode(nodes[node.pathParamChild]); in optimizeNode()
183 if (node.pathParamChild != 0U) in findHelper()
186 FindResult ret = findHelper("", nodes[node.pathParamChild], params); in findHelper()
243 if (nodes[idx].pathParamChild == 0U) in add()
246 nodes[idx].pathParamChild = newNodeIdx; in add()
248 idx = nodes[idx].pathParamChild; in add()
299 if (n.pathParamChild != 0U) in debugNodePrint()
[all …]
/openbmc/bmcweb/redfish-core/include/
H A Dsub_route_trie.hpp83 if (node.pathParamChild != 0U) in findHelper()
87 findHelper("", this->nodes[node.pathParamChild], params); in findHelper()
162 if (this->nodes[idx].pathParamChild == 0U) in add()
165 this->nodes[idx].pathParamChild = newNodeIdx; in add()
167 idx = this->nodes[idx].pathParamChild; in add()
222 if (n.pathParamChild != 0U) in debugNodePrint()
225 debugNodePrint(this->nodes[n.pathParamChild], level + 6); in debugNodePrint()