/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 Run Keyword If '${payload_status}' == '01' Deactivate Payload 54 Activate Payload 56 ${payload_status}= Get Payload Activation Status 60 Test Deactivate Payload [all …]
|
/openbmc/phosphor-host-ipmid/include/ipmid/message/ |
H A D | pack.hpp | 56 void PackBytesUnaligned(Payload& p, const NumericType& i) in PackBytesUnaligned() 81 static int op(Payload& p, const T& t) in op() 105 static int op(Payload& p, const std::tuple<T...>& v) in op() 118 static int op(Payload& p, const std::string& t) in op() 139 static int op(Payload& p, const fixed_uint_t<N>& t) in op() 161 static int op(Payload& p, const bool& b) in op() 172 static int op(Payload& p, const std::bitset<N>& t) in op() 192 static int op(Payload& p, const std::optional<T>& t) in op() 207 static int op(Payload& p, const std::array<T, N>& t) in op() 226 static int op(Payload& p, const std::vector<T>& t) in op() [all …]
|
H A D | unpack.hpp | 51 void UnpackBytesUnaligned(Payload& p, NumericType& i) in UnpackBytesUnaligned() 77 static int op(Payload& p, T& t) in op() 140 static int op(Payload& p, std::string& t) in op() 165 static int op(Payload& p, fixed_uint_t<N>& t) in op() 186 static int op(Payload& p, bool& b) in op() 206 static int op(Payload& p, std::bitset<N>& t) in op() 229 static int op(Payload& p, std::optional<T>& t) in op() 258 static int op(Payload& p, std::array<T, N>& t) in op() 280 static int op(Payload& p, std::array<uint8_t, N>& t) in op() 299 static int op(Payload& p, std::vector<T>& t) in op() [all …]
|
/openbmc/phosphor-host-ipmid/include/ipmid/ |
H A D | message.hpp | 110 struct Payload struct 112 Payload() = default; 113 Payload(const Payload&) = default; 114 Payload& operator=(const Payload&) = default; 115 Payload(Payload&&) = default; 116 Payload& operator=(Payload&&) = default; 118 explicit Payload(SecureBuffer&& data) : raw(std::move(data)) {} in Payload() function 120 ~Payload() in ~Payload() argument 280 int prepend(const ipmi::message::Payload& p) in prepend() argument 561 int prepend(const ipmi::message::Payload& p) in prepend() [all …]
|
/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()
|
/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/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/ |
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 | 426 void getLanIPv6Address(message::Payload& ret, uint8_t channel, uint8_t set, in getLanIPv6Address() 622 static T unpackT(message::Payload& req) in unpackT() 633 static void unpackFinal(message::Payload& req) in unpackFinal() 677 RspType<> setLanOem(uint8_t channel, uint8_t parameter, message::Payload& req) 679 RspType<message::Payload> 683 RspType<> setLanOem(uint8_t, uint8_t, message::Payload& req) in setLanOem() 689 RspType<message::Payload> getLanOem(uint8_t, uint8_t, uint8_t, uint8_t) in getLanOem() 717 uint8_t parameter, message::Payload& req) in setLanInt() 1065 uint8_t parameter, message::Payload& req) in setLan() 1085 RspType<message::Payload> getLan(Context::ptr ctx, uint4_t channelBits, in getLan() [all …]
|
/openbmc/linux/Documentation/networking/device_drivers/cellular/qualcomm/ |
H A D | rmnet.rst | 37 Function Command / Data Reserved Pad Multiplexer ID Payload length 53 Payload length includes the padding length but does not include MAP header 63 Function Command / Data Reserved Pad Multiplexer ID Payload length 79 Payload length includes the padding length but does not include MAP header 116 Function Command / Data Next header Pad Multiplexer ID Payload length 133 Payload length includes the padding length but does not include MAP header 160 Function Command Reserved Pad Multiplexer ID Payload length
|
/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/linux/Documentation/userspace-api/media/v4l/ |
H A D | metafmt-uvc.rst | 9 UVC Payload Header Data 17 exact copies of the standard part of UVC Payload Header contents and auxiliary 19 in those headers. See section "2.4.3.3 Video and Still Image Payload Headers" of
|
/openbmc/slpd-lite/ |
H A D | slp.hpp | 115 struct Payload struct 129 Payload body;
|
/openbmc/linux/Documentation/gpu/dp-mst/ |
H A D | topology-figure-1.dot | 40 payload1 [label="Payload #1";style=filled;shape=box;fillcolor=lightblue]; 41 payload2 [label="Payload #2";style=filled;shape=box;fillcolor=lightblue];
|
H A D | topology-figure-3.dot | 57 payload1 [label="Payload #1";style=filled;shape=box;fillcolor=lightblue]; 58 payload2 [label="Payload #2";style=filled;shape=box;fillcolor=lightblue;penwidth=3];
|
H A D | topology-figure-2.dot | 54 payload1 [label="Payload #1";style=filled;shape=box;fillcolor=lightblue]; 55 payload2 [label="Payload #2";style=filled;shape=box;fillcolor=lightblue];
|
/openbmc/linux/Documentation/networking/ |
H A D | can_ucan_protocol.rst | 84 Payload Format 98 Payload Format 108 Payload Format 128 Payload Format 136 Payload Format 151 Payload Format
|
/openbmc/bmcweb/redfish-core/lib/ |
H A D | update_service.hpp | 231 task::Payload&& payload, in createTask() 248 sdbusplus::message_t& m, task::Payload&& payload) in softwareInterfaceAdded() 460 task::Payload payload(req); in monitorForSoftwareAvailable() 815 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, task::Payload payload, in handleStartUpdate() 833 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, task::Payload payload, in startUpdate() 849 task::Payload payload, const MemoryFileDescriptor& memfd, in getSwInfo() 890 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, task::Payload payload, in handleBMCUpdate() 916 task::Payload&& payload, std::string_view body, in processUpdateRequest() 990 task::Payload payload(req); in updateMultipartContext() 1013 task::Payload payload(req); in doHTTPUpdate()
|
H A D | task.hpp | 50 struct Payload struct 52 explicit Payload(const crow::Request& req) : in Payload() function 85 Payload() = delete; 312 std::optional<Payload> payload; 424 const task::Payload& p = *(ptr->payload); in requestRoutesTask()
|
/openbmc/linux/tools/testing/selftests/drivers/net/mlxsw/ |
H A D | devlink_trap_tunnel_vxlan_ipv6.sh | 151 )"00:08:"$( : Payload length 211 )"00:08:"$( : Payload length 298 )"00:08:"$( : Payload length
|
/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/openbmc-test-automation/systest/ |
H A D | network_stability_test.robot | 64 BMC Network Payload 68 BMC Network Payload
|