Lines Matching defs:app
7 #include "app.hpp"
222 App& app, const crow::Request& req,
226 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
282 App& app, const crow::Request& req,
286 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
319 crow::App& app, const crow::Request& req,
323 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
360 crow::App& app, const crow::Request& req,
364 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
416 crow::App& app, const crow::Request& req,
420 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
443 inline void requestRoutesFabricAdapterCollection(App& app)
445 BMCWEB_ROUTE(app, "/redfish/v1/Systems/<str>/FabricAdapters/")
448 std::bind_front(handleFabricAdapterCollectionGet, std::ref(app)));
450 BMCWEB_ROUTE(app, "/redfish/v1/Systems/<str>/FabricAdapters/")
453 std::bind_front(handleFabricAdapterCollectionHead, std::ref(app)));
456 inline void requestRoutesFabricAdapters(App& app)
458 BMCWEB_ROUTE(app, "/redfish/v1/Systems/<str>/FabricAdapters/<str>/")
461 std::bind_front(handleFabricAdapterGet, std::ref(app)));
463 BMCWEB_ROUTE(app, "/redfish/v1/Systems/<str>/FabricAdapters/<str>/")
466 std::bind_front(handleFabricAdapterHead, std::ref(app)));
468 BMCWEB_ROUTE(app, "/redfish/v1/Systems/<str>/FabricAdapters/<str>/")
471 std::bind_front(handleFabricAdapterPatch, std::ref(app)));