Home
last modified time | relevance | path

Searched refs:numBytes (Results 1 – 7 of 7) sorted by relevance

/openbmc/openpower-hw-diags/util/
H A Dffdc.cpp146 size_t numBytes = write(fd, buffer.c_str(), buffer.size()); in createFFDCTraceFile() local
147 if (buffer.size() != numBytes) in createFFDCTraceFile()
150 numBytes, buffer.size()); in createFFDCTraceFile()
/openbmc/openpower-hw-diags/attn/
H A Dattn_dbus.cpp61 size_t numBytes = write(fd, i_buffer.data(), i_buffer.size()); in createPelRaw() local
62 if (i_buffer.size() != numBytes) in createPelRaw()
64 trace::err("%s only %u of %u bytes written", filePath.c_str(), numBytes, in createPelRaw()
H A Dattn_logging.cpp53 size_t numBytes = write(fd, static_cast<char*>(i_buffer), i_size); in createFFDCRawFile() local
54 if (i_size != numBytes) in createFFDCRawFile()
57 numBytes, i_size); in createFFDCRawFile()
378 size_t numBytes = read(pelFd, buffer.data(), buffer.size()); in event() local
379 if (buffer.size() != numBytes) in event()
382 numBytes, buffer.size()); in event()
/openbmc/phosphor-ipmi-blobs/example/
H A Dexample.cpp87 uint32_t numBytes = std::min(remain, requestedSize); in read() local
89 std::vector<uint8_t> result(numBytes); in read()
90 std::memcpy(result.data(), &sess->buffer[offset], numBytes); in read()
/openbmc/ipmitool/include/ipmitool/
H A Dipmi_fwum.h211 unsigned char numBytes; member
/openbmc/ipmitool/lib/
H A Dipmi_sel.c265 hex2ascii (uint8_t * hexChars, uint8_t numBytes) in hex2ascii() argument
270 if(numBytes > SEL_OEM_NOTS_DATA_LEN) in hex2ascii()
271 numBytes = SEL_OEM_NOTS_DATA_LEN; in hex2ascii()
273 for(count=0;count < numBytes;count++) in hex2ascii()
280 hexString[numBytes]='\0'; in hex2ascii()
H A Dipmi_fwum.c746 addr_req.numBytes = *pInBufLength; in KfwumSaveFirmwareImage()