Home
last modified time | relevance | path

Searched refs:copyFrom (Results 1 – 23 of 23) sorted by relevance

/openbmc/phosphor-networkd/src/
H A Drtnetlink.cpp25 info.vlan_id.emplace(stdplus::raw::copyFrom<uint16_t>(data)); in parseVlanInfo()
73 stdplus::raw::copyFrom<stdplus::EtherAddr>(data)); in intfFromRtm()
77 ret.mtu.emplace(stdplus::raw::copyFrom<unsigned>(data)); in intfFromRtm()
80 ret.parent_idx.emplace(stdplus::raw::copyFrom<unsigned>(data)); in intfFromRtm()
174 ret.mac = stdplus::raw::copyFrom<stdplus::EtherAddr>(data); in neighFromRtm()
/openbmc/phosphor-ipmi-flash/bmc/firmware-handler/test/
H A Ddata_mock.hpp17 MOCK_METHOD(std::vector<std::uint8_t>, copyFrom, (std::uint32_t),
H A Dfirmware_write_unittest.cpp66 EXPECT_CALL(*dataMock, copyFrom(request.length)).WillOnce(Return(bytes)); in TEST_F()
/openbmc/openbmc/poky/meta/lib/oeqa/core/target/
H A D__init__.py31 def copyFrom(self, remoteSrc, localDst): member in OETarget
H A Dserial.py147 def copyFrom(self, remoteSrc, localDst): member in OESerialTarget
H A Dssh.py119 def copyFrom(self, remoteSrc, localDst, warn_on_failure=False): member in OESSHTarget
/openbmc/phosphor-ipmi-flash/bmc/firmware-handler/
H A Ddata_handler.hpp39 virtual std::vector<std::uint8_t> copyFrom(std::uint32_t length) = 0;
H A Dnet_handler.hpp26 std::vector<std::uint8_t> copyFrom(std::uint32_t length) override;
H A Dlpc_handler.hpp40 std::vector<std::uint8_t> copyFrom(std::uint32_t length) override;
H A Dpci_handler.hpp27 std::vector<std::uint8_t> copyFrom(std::uint32_t length) override;
H A Dpci_nuvoton_handler.cpp75 std::vector<std::uint8_t> PciDataHandler::copyFrom(std::uint32_t length) in copyFrom() function in ipmi_flash::PciDataHandler
H A Dpci_handler.cpp102 std::vector<std::uint8_t> PciDataHandler::copyFrom(std::uint32_t length) in copyFrom() function in ipmi_flash::PciDataHandler
H A Dlpc_handler.cpp64 std::vector<std::uint8_t> LpcDataHandler::copyFrom(std::uint32_t length) in copyFrom() function in ipmi_flash::LpcDataHandler
H A Dnet_handler.cpp70 std::vector<std::uint8_t> NetDataHandler::copyFrom(std::uint32_t length) in copyFrom() function in ipmi_flash::NetDataHandler
H A Dfirmware_handler.cpp545 bytes = item->second->dataHandler->copyFrom(header.length); in write()
/openbmc/openbmc/poky/meta/lib/oeqa/runtime/cases/
H A Dx32lib.py20 self.target.copyFrom("/bin/ls", dest)
H A Dmultilib.py22 self.target.copyFrom(binary, dest)
H A Dltp.py92 (status, output) = self.target.copyFrom(remote_src, dst, True)
H A Dparselogs.py100 self.target.copyFrom(str(f), target_logs)
/openbmc/u-boot/lib/
H A Dlz4.c191 const BYTE* copyFrom = lowPrefix; in LZ4_decompress_generic() local
192 while (op < endOfMatch) *op++ = *copyFrom++; in LZ4_decompress_generic()
/openbmc/openbmc/poky/meta-selftest/lib/oeqa/runtime/cases/
H A Ddnf_runtime.py36 self.tc.target.copyFrom("/etc/yum.repos.d/oe-remote-repo.repo", temp_file)
/openbmc/linux/lib/lz4/
H A Dlz4_decompress.c366 const BYTE *copyFrom = lowPrefix; in LZ4_decompress_generic() local
369 *op++ = *copyFrom++; in LZ4_decompress_generic()
/openbmc/phosphor-host-ipmid/
H A Dtransporthandler.cpp629 return stdplus::raw::copyFrom<T>(bytes); in unpackT()