Home
last modified time | relevance | path

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

/openbmc/slpd-lite/
H A Dslp_parser.cpp122 if ((pos + slp::request::SIZE_PRLIST) > buff.size()) in parseSrvTypeRqst()
125 << (pos + slp::request::SIZE_PRLIST) << " / " << buff.size() in parseSrvTypeRqst()
129 std::copy_n(buff.data() + pos, slp::request::SIZE_PRLIST, in parseSrvTypeRqst()
132 pos += slp::request::SIZE_PRLIST; in parseSrvTypeRqst()
237 if ((pos + slp::request::SIZE_PRLIST) > buff.size()) in parseSrvRqst()
240 << (pos + slp::request::SIZE_PRLIST) << " / " << buff.size() in parseSrvRqst()
244 std::copy_n(buff.data() + pos, slp::request::SIZE_PRLIST, in parseSrvRqst()
247 pos += slp::request::SIZE_PRLIST; in parseSrvRqst()
H A Dslp_meta.hpp74 constexpr size_t SIZE_PRLIST = 2; variable