Lines Matching full:app
5 #include "app.hpp"
36 inline void redfishGet(App& app, const crow::Request& req, in redfishGet() argument
39 if (!redfish::setUpRedfishRoute(app, req, asyncResp)) in redfishGet()
46 inline void redfish404(App& app, const crow::Request& req, in redfish404() argument
54 if (!redfish::setUpRedfishRoute(app, req, asyncResp)) in redfish404()
68 inline void redfish405(App& app, const crow::Request& req, in redfish405() argument
74 if (!redfish::setUpRedfishRoute(app, req, asyncResp)) in redfish405()
92 App& app, const crow::Request& req, in jsonSchemaIndexGet() argument
95 if (!redfish::setUpRedfishRoute(app, req, asyncResp)) in jsonSchemaIndexGet()
140 inline void jsonSchemaGet(App& app, const crow::Request& req, in jsonSchemaGet() argument
144 if (!redfish::setUpRedfishRoute(app, req, asyncResp)) in jsonSchemaGet()
245 inline void requestRoutesRedfish(App& app) in requestRoutesRedfish() argument
247 BMCWEB_ROUTE(app, "/redfish/") in requestRoutesRedfish()
249 std::bind_front(redfishGet, std::ref(app))); in requestRoutesRedfish()
251 BMCWEB_ROUTE(app, "/redfish/v1/JsonSchemas/<str>/<str>") in requestRoutesRedfish()
255 BMCWEB_ROUTE(app, "/redfish/v1/JsonSchemas/<str>/") in requestRoutesRedfish()
258 std::bind_front(jsonSchemaGet, std::ref(app))); in requestRoutesRedfish()
260 BMCWEB_ROUTE(app, "/redfish/v1/JsonSchemas/") in requestRoutesRedfish()
263 std::bind_front(jsonSchemaIndexGet, std::ref(app))); in requestRoutesRedfish()
266 BMCWEB_ROUTE(app, "/redfish/<path>") in requestRoutesRedfish()
269 std::bind_front(redfish404, std::ref(app))); in requestRoutesRedfish()
271 BMCWEB_ROUTE(app, "/redfish/<path>") in requestRoutesRedfish()
274 std::bind_front(redfish405, std::ref(app))); in requestRoutesRedfish()