| /openbmc/phosphor-host-ipmid/test/message/ |
| H A D | payload.cpp | 27 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 D | pack.cpp | 25 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 D | unpack.cpp | 24 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 D | test_ipmi_payload.robot | 2 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 D | test_ipmi_sol.robot | 216 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 D | pack.hpp | 57 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 D | unpack.hpp | 52 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 D | message.hpp | 112 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 D | sol_cmds.cpp | 21 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 D | sol_context.cpp | 226 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 D | sol_context.hpp | 75 struct Payload struct
|
| /openbmc/phosphor-host-ipmid/ |
| H A D | host-ipmid-whitelist.conf | 29 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 D | transporthandler.cpp | 460 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 D | gbs-ipmid-whitelist.conf | 41 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 D | bootstrap-credentials-oem-cmds.cpp | 44 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 D | slp.hpp | 115 struct Payload struct 129 Payload body;
|
| /openbmc/intel-ipmi-oem/ |
| H A D | ipmi-allowlist.conf | 73 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 D | task.hpp | 62 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 D | update_service.hpp | 251 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 D | README.sol | 14 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 D | efi-x86_payload.dts | 18 model = "EFI x86 Payload";
|
| /openbmc/openbmc-test-automation/systest/ |
| H A D | network_stability_test.robot | 64 BMC Network Payload 68 BMC Network Payload
|
| /openbmc/openbmc-test-automation/lib/ |
| H A D | dmtf_redfishtool_utils.robot | 38 # 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 D | test_tasks_service.robot | 97 # "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 D | trusted-firmware-a-corstone1000.inc | 20 # Enabling Secure-EL1 Payload Dispatcher (SPD)
|