Home
last modified time | relevance | path

Searched refs:full_payload (Results 1 – 3 of 3) sorted by relevance

/openbmc/phosphor-networkd/src/
H A Dncsi_util.cpp271 ctx->resp.full_payload.assign(data, data + data_len); in __anon66112f010202()
540 if (this->full_payload.size() < sizeof(internal::NCSIPacketHeader) + in parseFullPayload()
548 reinterpret_cast<decltype(respHeader)>(this->full_payload.data()); in parseFullPayload()
553 if (payloadLen > this->full_payload.size() - sizeof(*respHeader)) in parseFullPayload()
557 this->full_payload.size() - sizeof(*respHeader)); in parseFullPayload()
563 std::span(this->full_payload.begin() + sizeof(*respHeader), payloadLen); in parseFullPayload()
657 resp.full_payload.resize(maxRespLen);
658 iov[0].iov_len = resp.full_payload.size();
659 iov[0].iov_base = resp.full_payload.data();
686 resp.full_payload
[all...]
H A Dncsi_cmd.cpp362 resp->full_payload.size(), "DATA", toHexStr(resp->full_payload)); in main()
H A Dncsi_util.hpp64 std::vector<unsigned char> full_payload; member
66 /* Given an incoming response with full_payload set, check that we have