Lines Matching defs:offset
288 getSELEntry(uint16_t reservationID, uint16_t selRecordID, uint8_t offset,
360 if (offset >= ipmi::sel::selRecordSize ||
366 auto diff = ipmi::sel::selRecordSize - offset;
372 reinterpret_cast<const uint8_t*>(evt) + offset,
779 * @param offset - FRU inventory offset to read
788 ipmiStorageReadFruData(uint8_t fruDeviceId, uint16_t offset,
807 if (offset >= size)
814 if ((offset + readCount) <= size)
820 returnCount = size - offset;
823 std::vector<uint8_t> fruData((fruArea.begin() + offset),
824 (fruArea.begin() + offset + returnCount));