Home
last modified time | relevance | path

Searched refs:Payload (Results 1 – 25 of 61) sorted by relevance

123

/openbmc/phosphor-host-ipmid/test/message/
H A Dpayload.cpp27 TEST(Payload, InputSize) in TEST() argument
31 ipmi::message::Payload p(std::forward<ipmi::SecureBuffer>(i)); in TEST()
35 TEST(Payload, OutputSize) in TEST() argument
37 ipmi::message::Payload p; in TEST()
47 TEST(Payload, Resize) in TEST() argument
50 ipmi::message::Payload p; in TEST()
56 TEST(Payload, Data) in TEST() argument
59 ipmi::message::Payload p; in TEST()
67 ipmi::message::Payload p; in TEST()
75 ipmi::message::Payload p; in TEST()
[all …]
H A Dpack.cpp25 ipmi::message::Payload p; in TEST()
37 ipmi::message::Payload p; in TEST()
49 ipmi::message::Payload p; in TEST()
61 ipmi::message::Payload p; in TEST()
73 ipmi::message::Payload p; in TEST()
87 ipmi::message::Payload p; in TEST()
104 ipmi::message::Payload p; in TEST()
119 ipmi::message::Payload p; in TEST()
133 ipmi::message::Payload p; in TEST()
149 ipmi::message::Payload p; in TEST()
[all …]
H A Dunpack.cpp24 ipmi::message::Payload p(std::forward<ipmi::SecureBuffer>(i)); in TEST()
38 ipmi::message::Payload p(std::forward<ipmi::SecureBuffer>(i)); in TEST()
52 ipmi::message::Payload p(std::forward<ipmi::SecureBuffer>(i)); in TEST()
65 ipmi::message::Payload p(std::forward<ipmi::SecureBuffer>(i)); in TEST()
79 ipmi::message::Payload p(std::forward<ipmi::SecureBuffer>(i)); in TEST()
93 ipmi::message::Payload p(std::forward<ipmi::SecureBuffer>(i)); in TEST()
106 ipmi::message::Payload p(std::forward<ipmi::SecureBuffer>(i)); in TEST()
120 ipmi::message::Payload p(std::forward<ipmi::SecureBuffer>(i)); in TEST()
134 ipmi::message::Payload p(std::forward<ipmi::SecureBuffer>(i)); in TEST()
147 ipmi::message::Payload p(std::forward<ipmi::SecureBuffer>(i)); in TEST()
[all …]
/openbmc/openbmc-test-automation/ipmi/
H A Dtest_ipmi_payload.robot2 Documentation This suite tests IPMI Payload in OpenBMC.
10 Suite Setup IPMI Payload Setup Execution
34 Test Get Payload Activation Status
43 ${payload_status}= Get Payload Activation Status
47 Test Activate Payload
51 ${payload_status}= Get Payload Activation Status
52 IF '${payload_status}' == '01' Deactivate Payload
54 Activate Payload
56 ${payload_status}= Get Payload Activation Status
60 Test Deactivate Payload
[all …]
H A Dtest_ipmi_sol.robot216 Verify SOL Payload Channel
221 ${payload_channel}= Get SOL Setting Payload Channel
225 Verify SOL Payload Port
229 # Get Payload Port from SOL Info and verify it equal with ipmi port.
230 ${payload_port}= Get SOL Setting Payload Port
/openbmc/phosphor-host-ipmid/include/ipmid/message/
H A Dpack.hpp57 void PackBytesUnaligned(Payload& p, const NumericType& i) in PackBytesUnaligned()
82 static int op(Payload& p, const T& t) in op()
106 static int op(Payload& p, const std::tuple<T...>& v) in op()
119 static int op(Payload& p, const std::string& t) in op()
140 static int op(Payload& p, const fixed_uint_t<N>& t) in op()
162 static int op(Payload& p, const bool& b) in op()
173 static int op(Payload& p, const std::bitset<N>& t) in op()
193 static int op(Payload& p, const std::optional<T>& t) in op()
208 static int op(Payload& p, const std::array<T, N>& t) in op()
227 static int op(Payload& p, const std::vector<T>& t) in op()
[all …]
H A Dunpack.hpp52 void UnpackBytesUnaligned(Payload& p, NumericType& i) in UnpackBytesUnaligned()
78 static int op(Payload& p, T& t) in op()
141 static int op(Payload& p, std::string& t) in op()
166 static int op(Payload& p, fixed_uint_t<N>& t) in op()
187 static int op(Payload& p, bool& b) in op()
207 static int op(Payload& p, std::bitset<N>& t) in op()
230 static int op(Payload& p, std::optional<T>& t) in op()
259 static int op(Payload& p, std::array<T, N>& t) in op()
281 static int op(Payload& p, std::array<uint8_t, N>& t) in op()
300 static int op(Payload& p, std::vector<T>& t) in op()
[all …]
/openbmc/phosphor-host-ipmid/include/ipmid/
H A Dmessage.hpp112 struct Payload struct
114 Payload() = default;
115 Payload(const Payload&) = default;
116 Payload& operator=(const Payload&) = default;
117 Payload(Payload&&) = default;
118 Payload& operator=(Payload&&) = default;
120 explicit Payload(SecureBuffer&& data) : raw(std::move(data)) {} in Payload() function
122 ~Payload() in ~Payload() argument
282 int prepend(const ipmi::message::Payload& p) in prepend() argument
563 int prepend(const ipmi::message::Payload& p) in prepend()
[all …]
/openbmc/phosphor-net-ipmid/command/
H A Dsol_cmds.cpp21 if (inPayload.size() < sizeof(Payload)) in payloadHandler()
26 auto request = reinterpret_cast<const Payload*>(inPayload.data()); in payloadHandler()
27 auto solDataSize = inPayload.size() - sizeof(Payload); in payloadHandler()
32 std::copy_n(inPayload.data() + sizeof(Payload), solDataSize, in payloadHandler()
/openbmc/phosphor-net-ipmid/sol/
H A Dsol_context.cpp226 std::vector<uint8_t> outPayload(sizeof(Payload)); in prepareResponse()
227 auto response = reinterpret_cast<Payload*>(outPayload.data()); in prepareResponse()
237 payloadCache.resize(sizeof(Payload) + readSize); in prepareResponse()
238 auto response = reinterpret_cast<Payload*>(payloadCache.data()); in prepareResponse()
245 std::copy_n(handle, readSize, payloadCache.data() + sizeof(Payload)); in prepareResponse()
264 payloadCache.resize(sizeof(Payload) + readSize); in sendOutboundPayload()
265 auto response = reinterpret_cast<Payload*>(payloadCache.data()); in sendOutboundPayload()
272 std::copy_n(handle, readSize, payloadCache.data() + sizeof(Payload)); in sendOutboundPayload()
H A Dsol_context.hpp75 struct Payload struct
/openbmc/phosphor-host-ipmid/
H A Dhost-ipmid-whitelist.conf29 0x06:0x4D //<App>:<Get User Payload Access>
30 0x06:0x4E //<App>:<Get Channel Payload Support>
31 0x06:0x4F //<App>:<Get Channel Payload Version>
H A Dtransporthandler.cpp460 void getLanIPv6Address(message::Payload& ret, uint8_t channel, uint8_t set, in getLanIPv6Address()
662 static T unpackT(message::Payload& req) in unpackT()
673 static void unpackFinal(message::Payload& req) in unpackFinal()
717 RspType<> setLanOem(uint8_t channel, uint8_t parameter, message::Payload& req)
719 RspType<message::Payload> getLanOem(uint8_t channel, uint8_t parameter,
723 RspType<> setLanOem(uint8_t, uint8_t, message::Payload& req) in setLanOem()
729 RspType<message::Payload> getLanOem(uint8_t, uint8_t, uint8_t, uint8_t) in getLanOem()
757 uint8_t parameter, message::Payload& req) in setLanInt()
1105 uint8_t parameter, message::Payload& req) in setLan()
1125 RspType<message::Payload> getLan(Context::ptr ctx, uint4_t channelBits, in getLan()
[all …]
/openbmc/openbmc/meta-quanta/meta-gbs/recipes-phosphor/ipmi/phosphor-ipmi-host/
H A Dgbs-ipmid-whitelist.conf41 0x06:0x48 //<App>:<Activate Payload>
42 0x06:0x49 //<App>:<Deactivate Payload>
43 0x06:0x4A //<App>:<Get Payload Activation Status>
44 0x06:0x4B //<App>:<Get Payload Instance Info>
/openbmc/phosphor-host-ipmid/oem/nvidia/
H A Dbootstrap-credentials-oem-cmds.cpp44 ipmi::RspType<ipmi::message::Payload> ipmiGetUsbSerialNumber() in ipmiGetUsbSerialNumber()
47 ipmi::message::Payload usbSerialNumberPayload; in ipmiGetUsbSerialNumber()
52 ipmi::RspType<ipmi::message::Payload> ipmiGetRedfishHostName( in ipmiGetRedfishHostName()
80 ipmi::message::Payload hostNamePayload; in ipmiGetRedfishHostName()
/openbmc/slpd-lite/
H A Dslp.hpp115 struct Payload struct
129 Payload body;
/openbmc/intel-ipmi-oem/
H A Dipmi-allowlist.conf73 0x06:0x48:0x7f7f //<App>:<Activate Payload>
74 0x06:0x49:0x7f7f //<App>:<Deactivate Payload>
75 0x06:0x4a:0xffff //<App>:<Get Payload Activation Status>
76 0x06:0x4b:0xffff //<App>:<Get Payload Instance Info>
77 0x06:0x4c:0x7f7f //<App>:<Set User Payload Access>
78 0x06:0x4d:0xff7f //<App>:<Get User Payload Access>
79 0x06:0x4e:0xff7f //<App>:<Get Channel Payload Support>
80 0x06:0x4f:0xff7f //<App>:<Get Channel Payload Version>
81 0x06:0x50:0xff7f //<App>:<Get Channel OEM Payload Info>
84 0x06:0x55:0xff7f //<App>:<Suspend Payload Encryption>
[all …]
/openbmc/bmcweb/redfish-core/lib/
H A Dtask.hpp62 struct Payload struct
64 explicit Payload(const crow::Request& req) : in Payload() function
97 Payload() = delete;
201 const task::Payload& p = *payload; in populateResp()
362 std::optional<Payload> payload;
474 const task::Payload& p = *(ptr->payload); in requestRoutesTask()
H A Dupdate_service.hpp251 task::Payload&& payload, in createTask()
268 sdbusplus::message_t& m, task::Payload&& payload) in softwareInterfaceAdded()
474 task::Payload payload(req); in monitorForSoftwareAvailable()
853 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, task::Payload payload, in handleStartUpdate()
871 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, task::Payload payload, in startUpdate()
888 task::Payload payload, const MemoryFileDescriptor& memfd, in getSwInfo()
929 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, task::Payload payload, in handleBMCUpdate()
954 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, task::Payload payload, in handleMultipartManagerUpdate()
992 task::Payload&& payload, std::string_view body, in processUpdateRequest()
1082 task::Payload payload(req); in updateMultipartContext()
[all …]
/openbmc/ipmitool/src/plugins/lanplus/
H A DREADME.sol14 command maps directly to the IPMI Activate Payload command. It first
25 specified by the BMC in the response to the Activate Payload command.
50 Creation and dispatch of IPMI Activate Payload command
/openbmc/u-boot/arch/x86/dts/
H A Defi-x86_payload.dts18 model = "EFI x86 Payload";
/openbmc/openbmc-test-automation/systest/
H A Dnetwork_stability_test.robot64 BMC Network Payload
68 BMC Network Payload
/openbmc/openbmc-test-automation/lib/
H A Ddmtf_redfishtool_utils.robot38 # payload Payload with POST operation (e.g. data for user name, role, etc. ).
57 # payload Payload with POST operation (e.g. data for user name, password, role,
/openbmc/openbmc-test-automation/redfish/task_service/
H A Dtest_tasks_service.robot97 # "Payload": {
143 Should Be Equal ${resp["Payload"]["HttpOperation"]} POST
146 Should Be Equal ${resp["Payload"]["TargetUri"]}
/openbmc/openbmc/meta-arm/meta-arm-bsp/recipes-bsp/trusted-firmware-a/
H A Dtrusted-firmware-a-corstone1000.inc20 # Enabling Secure-EL1 Payload Dispatcher (SPD)

123