| /openbmc/pldm/oem/meta/libpldmresponder/ |
| H A D | file_io_by_type.hpp | 27 class FileHandler class 30 FileHandler() = default; 33 FileHandler(const FileHandler&) = delete; 34 FileHandler(FileHandler&&) = delete; 35 FileHandler& operator=(const FileHandler&) = delete; 36 FileHandler& operator=(FileHandler&&) = delete; 37 virtual ~FileHandler() = default;
|
| H A D | file_io_type_http_boot.hpp | 14 class HttpBootHandler : public FileHandler
|
| H A D | file_io_type_post_code.hpp | 14 class PostCodeHandler : public FileHandler
|
| H A D | file_io_type_power_control.hpp | 14 class PowerControlHandler : public FileHandler
|
| H A D | file_io_type_bios_version.hpp | 15 class BIOSVersionHandler : public FileHandler
|
| H A D | file_io.hpp | 66 std::unique_ptr<FileHandler> getHandlerByType(pldm_tid_t tid,
|
| H A D | file_io.cpp | 14 std::unique_ptr<FileHandler> FileIOHandler::getHandlerByType( in getHandlerByType()
|
| /openbmc/phosphor-ipmi-flash/bmc/ |
| H A D | file_handler.cpp | 28 bool FileHandler::open(const std::string& path, std::ios_base::openmode mode) in open() 42 void FileHandler::close() in close() 47 bool FileHandler::write(std::uint32_t offset, in write() 55 std::optional<std::vector<uint8_t>> FileHandler::read(std::uint32_t offset, in read() 73 int FileHandler::getSize() in getSize()
|
| H A D | file_handler.hpp | 14 class FileHandler : public ImageHandlerInterface class 23 explicit FileHandler(const std::string& filename) : filename(filename) {} in FileHandler() function in ipmi_flash::FileHandler
|
| /openbmc/phosphor-ipmi-flash/bmc/firmware-handler/test/ |
| H A D | file_handler_unittest.cpp | 28 FileHandler handler(TESTPATH); in TEST_F() 35 FileHandler handler(TESTPATH); in TEST_F() 46 FileHandler handler(TESTPATH); in TEST_F() 55 FileHandler handler(TESTPATH); in TEST_F() 82 FileHandler handler(TESTPATH); in TEST_F() 109 FileHandler handler(TESTPATH); in TEST_F() 130 FileHandler handler(TESTPATH); in TEST_F()
|
| /openbmc/pldm/oem/ibm/libpldmresponder/ |
| H A D | file_io_by_type.hpp | 18 class FileHandler class 147 FileHandler(uint32_t fileHandle) : fileHandle(fileHandle) {} in FileHandler() function in pldm::responder::FileHandler 151 virtual ~FileHandler() {} in ~FileHandler() 163 std::unique_ptr<FileHandler> getHandlerByType(uint16_t fileType,
|
| H A D | file_io_by_type.cpp | 34 int FileHandler::transferFileData(int32_t fd, bool upstream, uint32_t offset, in transferFileData() 55 int FileHandler::transferFileDataToSocket(int32_t fd, uint32_t& length, in transferFileDataToSocket() 74 int FileHandler::transferFileData(const fs::path& path, bool upstream, in transferFileData() 126 std::unique_ptr<FileHandler> getHandlerByType(uint16_t fileType, in getHandlerByType() 187 int FileHandler::readFile(const std::string& filePath, uint32_t offset, in readFile()
|
| H A D | file_io_type_vpd.hpp | 15 class keywordHandler : public FileHandler 21 FileHandler(fileHandle) in keywordHandler()
|
| H A D | file_io_type_pel.hpp | 15 class PelHandler : public FileHandler 20 PelHandler(uint32_t fileHandle) : FileHandler(fileHandle) {} in PelHandler()
|
| H A D | file_io_type_progress_src.hpp | 16 class ProgressCodeHandler : public FileHandler 21 ProgressCodeHandler(uint32_t fileHandle) : FileHandler(fileHandle) {} in ProgressCodeHandler()
|
| H A D | file_io_type_dump.hpp | 16 class DumpHandler : public FileHandler 22 FileHandler(fileHandle), dumpType(fileType) in DumpHandler()
|
| H A D | file_io_type_cert.hpp | 22 class CertHandler : public FileHandler 28 FileHandler(fileHandle), certType(fileType) in CertHandler()
|
| H A D | file_io.cpp | 851 std::unique_ptr<FileHandler> handler{}; in rwFileByTypeIntoMemory() 923 std::unique_ptr<FileHandler> handler{}; in writeFileByType() 980 std::unique_ptr<FileHandler> handler{}; in readFileByType() 1029 std::unique_ptr<FileHandler> handler{}; in fileAck() 1123 std::unique_ptr<FileHandler> handler{}; in newFileAvailable() 1175 std::unique_ptr<FileHandler> handler{}; in fileAckWithMetaData() 1219 std::unique_ptr<FileHandler> handler{}; in newFileAvailableWithMetaData()
|
| H A D | file_io_type_lid.hpp | 27 class LidHandler : public FileHandler 33 FileHandler(fileHandle), lidType(lidType) in LidHandler()
|
| H A D | file_io_type_pcie.hpp | 137 class PCIeInfoHandler : public FileHandler
|
| /openbmc/phosphor-ipmi-flash/bmc/version-handler/ |
| H A D | version_handlers_builder.cpp | 74 output.handler = std::make_unique<FileHandler>(path); in buildHandlerFromJson()
|
| /openbmc/phosphor-ipmi-flash/bmc/log-handler/ |
| H A D | log_handlers_builder.cpp | 63 output.handler = std::make_unique<FileHandler>(path); in buildHandlerFromJson()
|
| /openbmc/phosphor-ipmi-flash/bmc/firmware-handler/ |
| H A D | main.cpp | 57 return HandlerPack(name, std::make_unique<FileHandler>(path)); in CreateFileHandlerPack()
|
| H A D | firmware_handlers_builder.cpp | 63 output.handler = std::make_unique<FileHandler>(path); in buildHandlerFromJson()
|
| /openbmc/qemu/tests/functional/qemu_test/ |
| H A D | testcase.py | 218 self._log_fh = logging.FileHandler(self.log_filename, mode='w') 307 self._console_log_fh = logging.FileHandler(self.console_log_name,
|