Home
last modified time | relevance | path

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

/openbmc/bmcweb/http/
H A Drouting.hpp141 perMethods[method].internalAdd(rule, ruleObject); in internalAddRuleObject()
176 for (PerMethod& perMethod : perMethods) in validate()
223 maxVerbIndex < std::tuple_size_v<decltype(perMethods)>); in findRoute()
225 perMethods[perMethodIndex]); in findRoute()
244 if (reqMethodIndex >= perMethods.size()) in findRoute()
250 perMethods[reqMethodIndex]); in findRoute()
363 for (size_t i = 0; i < perMethods.size(); i++) in debugPrint()
366 perMethods[i].trie.debugPrint(); in debugPrint()
374 for (const PerMethod& pm : perMethods) in getRoutes()
387 std::array<PerMethod, static_cast<size_t>(HttpVerb::Max)> perMethods; member in crow::Router
/openbmc/bmcweb/redfish-core/include/
H A Dredfish_oem_routing.hpp61 auto& perMethod = perMethods[static_cast<size_t>(method)]; in newRule()
183 if (reqMethodIndex >= perMethods.size()) in findRoute()
189 findRouteByPerMethod(req.url(), perMethods[reqMethodIndex]); in findRoute()
206 for (PerMethod& perMethod : perMethods) in validate()
214 for (size_t i = 0; i < perMethods.size(); i++) in debugPrint()
218 perMethods[i].trie.debugPrint(); in debugPrint()
253 std::array<PerMethod, static_cast<size_t>(HttpVerb::Max)> perMethods; member in redfish::OemRouter