Home
last modified time | relevance | path

Searched refs:payloadCache (Results 1 – 2 of 2) sorted by relevance

/openbmc/phosphor-net-ipmid/sol/
H A Dsol_context.cpp163 payloadCache.clear(); in processInboundPayload()
222 if (payloadCache.size() != 0 || (bufferSize < sendThreshold)) in prepareResponse()
237 payloadCache.resize(sizeof(Payload) + readSize); in prepareResponse()
238 auto response = reinterpret_cast<Payload*>(payloadCache.data()); in prepareResponse()
251 sendPayload(payloadCache); in prepareResponse()
256 if (payloadCache.size() != 0) in sendOutboundPayload()
264 payloadCache.resize(sizeof(Payload) + readSize); in sendOutboundPayload()
265 auto response = reinterpret_cast<Payload*>(payloadCache.data()); in sendOutboundPayload()
278 sendPayload(payloadCache); in sendOutboundPayload()
285 sendPayload(payloadCache); in resendPayload()
[all …]
H A Dsol_context.hpp294 std::vector<uint8_t> payloadCache; member in sol::Context