Home
last modified time | relevance | path

Searched refs:readFunc (Results 1 – 5 of 5) sorted by relevance

/openbmc/entity-manager/src/fru_device/
H A Dfru_reader.hpp30 explicit FRUReader(ReadBlockFunc readFunc) : readFunc(std::move(readFunc)) in FRUReader() argument
45 ReadBlockFunc readFunc; member in FRUReader
H A Dfru_reader.cpp30 readFunc(blk * cacheBlockSize, cacheBlockSize, newData); in read()
H A Dfru_device.cpp360 auto readFunc = [file](off_t offset, size_t length, uint8_t* outbuf) { in processEeprom() local
363 FRUReader reader(std::move(readFunc)); in processEeprom()
559 auto readFunc = [is16BitBool, file, in getBusFRUs() local
564 FRUReader reader(std::move(readFunc)); in getBusFRUs()
576 auto readFunc = in getBusFRUs() local
582 FRUReader readerBytewise(std::move(readFunc)); in getBusFRUs()
1052 auto readFunc = [eeprom](off_t offset, size_t length, uint8_t* outbuf) { in writeFRU() local
1055 FRUReader reader(std::move(readFunc)); in writeFRU()
/openbmc/qemu/crypto/
H A Dtlssession.c46 QCryptoTLSSessionReadFunc readFunc; member
129 if (!session->readFunc) { in qcrypto_tls_session_pull()
141 ret = session->readFunc(buf, len, session->opaque, &session->rerr); in qcrypto_tls_session_pull()
504 QCryptoTLSSessionReadFunc readFunc, in qcrypto_tls_session_set_callbacks() argument
508 session->readFunc = readFunc; in qcrypto_tls_session_set_callbacks()
771 QCryptoTLSSessionReadFunc readFunc G_GNUC_UNUSED, in qcrypto_tls_session_set_callbacks()
/openbmc/qemu/include/crypto/
H A Dtlssession.h230 QCryptoTLSSessionReadFunc readFunc,