Lines Matching full:app
7 #include "app.hpp"
30 crow::App& app, const crow::Request& req, in handleBiosServiceGet() argument
34 if (!redfish::setUpRedfishRoute(app, req, asyncResp)) in handleBiosServiceGet()
66 inline void requestRoutesBiosService(App& app) in requestRoutesBiosService() argument
68 BMCWEB_ROUTE(app, "/redfish/v1/Systems/<str>/Bios/") in requestRoutesBiosService()
71 std::bind_front(handleBiosServiceGet, std::ref(app))); in requestRoutesBiosService()
82 crow::App& app, const crow::Request& req, in handleBiosResetPost() argument
86 if (!redfish::setUpRedfishRoute(app, req, asyncResp)) in handleBiosResetPost()
120 inline void requestRoutesBiosReset(App& app) in requestRoutesBiosReset() argument
122 BMCWEB_ROUTE(app, "/redfish/v1/Systems/<str>/Bios/Actions/Bios.ResetBios/") in requestRoutesBiosReset()
125 std::bind_front(handleBiosResetPost, std::ref(app))); in requestRoutesBiosReset()