Lines Matching full:app
7 #include "app.hpp"
61 crow::App& app, const crow::Request& req, in handleSessionHead() argument
65 if (!redfish::setUpRedfishRoute(app, req, asyncResp)) in handleSessionHead()
75 crow::App& app, const crow::Request& req, in handleSessionGet() argument
79 if (!redfish::setUpRedfishRoute(app, req, asyncResp)) in handleSessionGet()
101 crow::App& app, const crow::Request& req, in handleSessionDelete() argument
105 if (!redfish::setUpRedfishRoute(app, req, asyncResp)) in handleSessionDelete()
162 crow::App& app, const crow::Request& req, in handleSessionCollectionHead() argument
165 if (!redfish::setUpRedfishRoute(app, req, asyncResp)) in handleSessionCollectionHead()
175 crow::App& app, const crow::Request& req, in handleSessionCollectionGet() argument
178 if (!redfish::setUpRedfishRoute(app, req, asyncResp)) in handleSessionCollectionGet()
198 crow::App& app, const crow::Request& req, in handleSessionCollectionMembersGet() argument
201 if (!redfish::setUpRedfishRoute(app, req, asyncResp)) in handleSessionCollectionMembersGet()
242 crow::App& app, const crow::Request& req, in handleSessionCollectionPost() argument
245 if (!redfish::setUpRedfishRoute(app, req, asyncResp)) in handleSessionCollectionPost()
302 crow::App& app, const crow::Request& req, in handleSessionServiceHead() argument
305 if (!redfish::setUpRedfishRoute(app, req, asyncResp)) in handleSessionServiceHead()
314 crow::App& app, const crow::Request& req, in handleSessionServiceGet() argument
318 if (!redfish::setUpRedfishRoute(app, req, asyncResp)) in handleSessionServiceGet()
341 crow::App& app, const crow::Request& req, in handleSessionServicePatch() argument
344 if (!redfish::setUpRedfishRoute(app, req, asyncResp)) in handleSessionServicePatch()
380 inline void requestRoutesSession(App& app) in requestRoutesSession() argument
382 BMCWEB_ROUTE(app, "/redfish/v1/SessionService/Sessions/<str>/") in requestRoutesSession()
385 std::bind_front(handleSessionHead, std::ref(app))); in requestRoutesSession()
387 BMCWEB_ROUTE(app, "/redfish/v1/SessionService/Sessions/<str>/") in requestRoutesSession()
390 std::bind_front(handleSessionGet, std::ref(app))); in requestRoutesSession()
392 BMCWEB_ROUTE(app, "/redfish/v1/SessionService/Sessions/<str>/") in requestRoutesSession()
395 std::bind_front(handleSessionDelete, std::ref(app))); in requestRoutesSession()
397 BMCWEB_ROUTE(app, "/redfish/v1/SessionService/Sessions/") in requestRoutesSession()
400 std::bind_front(handleSessionCollectionHead, std::ref(app))); in requestRoutesSession()
402 BMCWEB_ROUTE(app, "/redfish/v1/SessionService/Sessions/") in requestRoutesSession()
405 std::bind_front(handleSessionCollectionGet, std::ref(app))); in requestRoutesSession()
412 BMCWEB_ROUTE(app, "/redfish/v1/SessionService/Sessions/") in requestRoutesSession()
415 std::bind_front(handleSessionCollectionPost, std::ref(app))); in requestRoutesSession()
417 BMCWEB_ROUTE(app, "/redfish/v1/SessionService/Sessions/Members/") in requestRoutesSession()
420 std::bind_front(handleSessionCollectionPost, std::ref(app))); in requestRoutesSession()
422 BMCWEB_ROUTE(app, "/redfish/v1/SessionService/") in requestRoutesSession()
425 std::bind_front(handleSessionServiceHead, std::ref(app))); in requestRoutesSession()
427 BMCWEB_ROUTE(app, "/redfish/v1/SessionService/") in requestRoutesSession()
430 std::bind_front(handleSessionServiceGet, std::ref(app))); in requestRoutesSession()
432 BMCWEB_ROUTE(app, "/redfish/v1/SessionService/") in requestRoutesSession()
435 std::bind_front(handleSessionServicePatch, std::ref(app))); in requestRoutesSession()