Searched refs:thisReq (Results 1 – 4 of 4) sorted by relevance
/openbmc/bmcweb/redfish-core/include/ |
H A D | redfish_aggregator.hpp | 577 AggregationType aggType, const crow::Request& thisReq, in startAggregation() argument 580 if (thisReq.method() != boost::beast::http::verb::get) in startAggregation() 599 auto localReq = std::make_shared<crow::Request>(thisReq.req, ec); in startAggregation() 706 const crow::Request& thisReq = *sharedReq; in aggregateAndHandle() local 708 thisReq.target()); in aggregateAndHandle() 717 getInstance().forwardCollectionRequests(thisReq, asyncResp, in aggregateAndHandle() 730 getInstance().forwardContainsSubordinateRequests(thisReq, asyncResp, in aggregateAndHandle() 735 const boost::urls::segments_view urlSegments = thisReq.url().segments(); in aggregateAndHandle() 750 findSatellite(thisReq, asyncResp, satelliteInfo, *it); in aggregateAndHandle() 765 const crow::Request& thisReq, in forwardRequest() argument [all …]
|
/openbmc/bmcweb/http/ |
H A D | http2_connection.hpp | 279 crow::Request& thisReq = *it->second.req; in onRequestRecv() local 280 it->second.accept = thisReq.getHeaderValue("Accept"); in onRequestRecv() 282 BMCWEB_LOG_DEBUG("Handling {} \"{}\"", logPtr(&thisReq), in onRequestRecv() 283 thisReq.url().encoded_path()); in onRequestRecv() 300 thisReq.session = crow::authentication::authenticate( in onRequestRecv() 301 {}, asyncResp->res, thisReq.method(), thisReq.req, nullptr); in onRequestRecv() 302 if (!crow::authentication::isOnAllowlist(thisReq.url().path(), in onRequestRecv() 303 thisReq.method()) && in onRequestRecv() 304 thisReq.session == nullptr) in onRequestRecv() 308 thisReq.url().encoded_path(), in onRequestRecv() [all …]
|
H A D | http_client.hpp | 741 boost::beast::http::request<bmcweb::HttpBody> thisReq( in sendData() local 743 thisReq.set(boost::beast::http::field::host, in sendData() 745 thisReq.keep_alive(true); in sendData() 746 thisReq.body().str() = std::move(data); in sendData() 747 thisReq.prepare_payload(); in sendData() 758 conn->req = std::move(thisReq); in sendData() 783 conn->req = std::move(thisReq); in sendData() 791 requestQueue.emplace_back(std::move(thisReq), std::move(cb)); in sendData()
|
/openbmc/ipmitool/lib/ |
H A D | ipmi_fwum.c | 661 struct KfwumManualRollbackReq thisReq; in KfwumManualRollback() local 666 thisReq.type = 0; /* Wait BMC shutdown */ in KfwumManualRollback() 667 req.msg.data = (unsigned char *)&thisReq; in KfwumManualRollback() 691 struct KfwumStartFirmwareDownloadReq thisReq; in KfwumStartFirmwareImage() local 693 thisReq.lengthLSB = length & 0x000000ff; in KfwumStartFirmwareImage() 694 thisReq.lengthMid = (length >> 8) & 0x000000ff; in KfwumStartFirmwareImage() 695 thisReq.lengthMSB = (length >> 16) & 0x000000ff; in KfwumStartFirmwareImage() 696 thisReq.paddingLSB = padding & 0x00ff; in KfwumStartFirmwareImage() 697 thisReq.paddingMSB = (padding>> 8) & 0x00ff; in KfwumStartFirmwareImage() 698 thisReq.useSequence = 0x01; in KfwumStartFirmwareImage() [all …]
|