| /openbmc/phosphor-modbus/rtu/modbus/ |
| H A D | modbus_message.cpp | 12 Message& Message::operator<<(uint8_t d) in operator <<() 22 Message& Message::operator<<(uint16_t d) in operator <<() 30 Message& Message::operator<<(uint32_t d) in operator <<() 38 Message& Message::operator>>(uint8_t& d) in operator >>() 48 Message& Message::operator>>(uint16_t& d) in operator >>() 57 Message& Message::operator>>(uint32_t& d) in operator >>() 66 auto Message::appendCRC() -> void in appendCRC() 71 auto Message::validate() -> void in validate() 82 auto Message::verifyValue(const std::string& name, uint32_t currentValue, in verifyValue() 122 auto Message::generateCRC() -> uint16_t in generateCRC()
|
| H A D | modbus_message.hpp | 12 class Message class 20 Message& operator<<(uint8_t d); 21 Message& operator<<(uint16_t d); 22 Message& operator<<(uint32_t d); 25 Message& operator>>(uint8_t& d); 26 Message& operator>>(uint16_t& d); 27 Message& operator>>(uint32_t& d); 29 Message() = default; 30 Message(const Message&) = delete; 31 Message& operator=(const Message&) = delete; [all …]
|
| H A D | modbus.hpp | 8 class Message; 31 auto writeRequest(uint8_t deviceAddress, Message& request) 34 auto readResponse(uint8_t deviceAddress, Message& response,
|
| H A D | modbus_commands.hpp | 12 class ReadHoldingRegistersRequest : public Message 35 class Response : public Message
|
| /openbmc/phosphor-net-ipmid/ |
| H A D | message.hpp | 119 struct Message struct 123 Message() : in Message() function 125 rcSessionID(Message::MESSAGE_INVALID_SESSION_ID), in Message() 126 bmcSessionID(Message::MESSAGE_INVALID_SESSION_ID), in Message() 139 Message(const Message& other) : in Message() argument 159 Message& operator=(const Message&) = default; 160 Message(Message&&) = default; 161 Message& operator=(Message&&) = default; 162 ~Message() = default; 195 std::shared_ptr<Message> createResponse(std::vector<uint8_t>& output) in createResponse() argument [all …]
|
| H A D | message_parsers.hpp | 84 std::tuple<std::shared_ptr<Message>, SessionHeader> unflatten( 97 std::vector<uint8_t> flatten(const std::shared_ptr<Message>& outMessage, 127 std::shared_ptr<Message> unflatten(std::vector<uint8_t>& inPacket); 137 std::vector<uint8_t> flatten(const std::shared_ptr<Message>& outMessage, 174 std::shared_ptr<Message> unflatten(std::vector<uint8_t>& inPacket); 185 std::vector<uint8_t> flatten(const std::shared_ptr<Message>& outMessage, 211 const std::shared_ptr<Message>& message, 223 const std::shared_ptr<Message>& message, 238 const std::vector<uint8_t>& packet, const std::shared_ptr<Message>& message, 250 const std::shared_ptr<Message>& message, [all …]
|
| H A D | message_handler.hpp | 23 uint32_t sessionID = message::Message::MESSAGE_INVALID_SESSION_ID) : in Handler() 26 if (sessionID != message::Message::MESSAGE_INVALID_SESSION_ID) in Handler() 36 uint32_t sessionID = message::Message::MESSAGE_INVALID_SESSION_ID) : in Handler() 39 if (sessionID != message::Message::MESSAGE_INVALID_SESSION_ID) in Handler() 106 void updSessionData(std::shared_ptr<Message>& inMessage); 124 void send(std::shared_ptr<Message> outMessage); 149 std::shared_ptr<message::Message> inMessage{};
|
| H A D | message_parsers.cpp | 16 std::tuple<std::shared_ptr<Message>, SessionHeader> unflatten( in unflatten() 69 std::vector<uint8_t> flatten(const std::shared_ptr<Message>& outMessage, in flatten() 96 std::shared_ptr<Message> unflatten(std::vector<uint8_t>& inPacket) in unflatten() 111 auto message = std::make_shared<Message>(); in unflatten() 137 const std::shared_ptr<Message>& outMessage, in flatten() 173 std::shared_ptr<Message> unflatten(std::vector<uint8_t>& inPacket) in unflatten() 191 auto message = std::make_shared<Message>(); in unflatten() 248 std::vector<uint8_t> flatten(const std::shared_ptr<Message>& outMessage, in flatten() 320 const std::shared_ptr<Message>& /* message */, in verifyPacketIntegrity() argument 374 const std::shared_ptr<Message>& /* message */, in addIntegrityData() argument [all …]
|
| H A D | message_handler.cpp | 41 void Handler::updSessionData(std::shared_ptr<Message>& inMessage) in updSessionData() 69 std::shared_ptr<Message> outMessage = in ~Handler() 163 void Handler::send(std::shared_ptr<Message> outMessage) in send() 179 auto outMessage = std::make_shared<Message>(); in sendSOLPayload() 193 auto outMessage = std::make_shared<Message>(); in sendUnsolicitedIPMIPayload()
|
| /openbmc/slpd-lite/ |
| H A D | slp.hpp | 126 struct Message struct 144 std::tuple<int, Message> parseBuffer(const buffer& buf); 159 std::tuple<int, Message> parseHeader(const buffer& buf); 171 int parseSrvTypeRqst(const buffer& buf, Message& req); 183 int parseSrvRqst(const buffer& buf, Message& req); 201 std::tuple<int, buffer> processRequest(const Message& msg); 211 buffer processError(const Message& req, const uint8_t err); 227 std::tuple<int, buffer> processSrvRequest(const Message& msg); 241 std::tuple<int, buffer> processSrvTypeRequest(const Message& msg); 272 buffer prepareHeader(const Message& req);
|
| /openbmc/qemu/python/qemu/qmp/ |
| H A D | qmp_client.py | 25 from .message import Message 78 sent: Message, received: Message): argument 81 self.sent: Message = sent 83 self.received: Message = received 113 def __init__(self, error_message: str, msg: Message): argument 116 self.msg: Message = msg 152 def __init__(self, error_message: str, msg: Message, sent: Message): argument 158 class QMPClient(AsyncProtocol[Message], Events): 204 _PendingT = Union[Message, ExecInterruptedError] 342 async def _on_message(self, msg: Message) -> None: argument [all …]
|
| H A D | events.py | 447 from .message import Message 451 EventFilter = Callable[[Message], bool] 488 self._history: List[Message] = [] 501 def history(self) -> Tuple[Message, ...]: 511 def accept(self, event: Message) -> bool: argument 531 async def put(self, event: Message) -> None: argument 551 async def get(self) -> Message: 565 def clear(self) -> List[Message]: 589 def __aiter__(self) -> AsyncIterator[Message]: 592 async def __anext__(self) -> Message: [all …]
|
| /openbmc/docs/architecture/ |
| H A D | redfish-logging-in-bmcweb.md | 6 Redfish Message Objects can be represented in different ways. In bmcweb, we have 7 chosen to use Message Registries with Message Objects that are referenced using 13 ## Message Registries 16 add an appropriate message in a Message Registry. 18 The bmcweb Message Registries are located under 24 1. Title of the Message Object (required as the MessageKey in the MessageId). 25 2. Args (notated as "%x") in the "Message" field (required for the MessageArgs). 29 1. Choose a Message Registry for the new message 30 2. Choose a MessageKey to use as the title for the new Message entry 31 3. Insert a new Message entry (preferably with the title in alphabetical order) [all …]
|
| /openbmc/bmcweb/test/redfish-core/include/utils/ |
| H A D | dbus_utils.cpp | 50 "@Message.ExtendedInfo": [ in TEST() 52 "@odata.type": "#Message.v1_1_1.Message", in TEST() 53 "Message": "The request completed successfully.", in TEST() 82 "@Message.ExtendedInfo": [ in TEST() 84 "@odata.type": "#Message.v1_1_1.Message", in TEST() 85 …"Message": "The request failed due to an internal service error. The service is still operational… in TEST()
|
| H A D | error_code_test.cpp | 84 "@odata.type": "#Message.v1_1_1.Message", in TEST() 85 …"Message": "The request failed due to an internal service error. The service is still operational… in TEST() 119 "@Message.ExtendedInfo": [], in TEST() 127 "@odata.type": "#Message.v1_1_1.Message", in TEST() 128 …"Message": "The request failed due to an internal service error. The service is still operational… in TEST()
|
| /openbmc/slpd-lite/test/ |
| H A D | slp_parser_test.cpp | 24 slp::Message req; in TEST() 37 slp::Message req; in TEST() 50 slp::Message req; in TEST() 63 slp::Message req; in TEST() 87 slp::Message req; in TEST() 105 slp::Message req; in TEST() 128 slp::Message req; in TEST() 152 slp::Message req; in TEST() 196 slp::Message req; in TEST() 216 slp::Message req; in TEST() [all …]
|
| H A D | slp_message_handler_test.cpp | 36 slp::Message req; in TEST() 60 slp::Message req; in TEST() 85 slp::Message req; in TEST()
|
| /openbmc/boost-dbus/include/dbus/detail/ |
| H A D | queue.hpp | 17 template <typename Message> 21 typedef Message message_type; 22 typedef std::function<void(boost::system::error_code, Message)> handler_type; 33 queue(const queue<Message>& m) in queue() 46 closure(handler_type h, Message m, in closure()
|
| /openbmc/dbus-sensors/src/nvidia-gpu/ |
| H A D | OcpMctpVdm.hpp | 63 struct Message struct 77 Message msgHdr; 84 Message msgHdr; 93 Message msgHdr;
|
| /openbmc/bmcweb/test/redfish-core/include/ |
| H A D | registries_test.cpp | 28 const redfish::registries::Message* msg = in TEST() 33 const redfish::registries::Message* msg1 = in TEST() 49 const redfish::registries::Message* msg = in TEST()
|
| /openbmc/bmcweb/redfish-core/include/ |
| H A D | registries.hpp | 39 struct Message struct 57 using MessageEntry = std::pair<const char*, const Message>; 145 const Message* getMessage(std::string_view messageID); 147 const Message* getMessageFromRegistry(const std::string& messageKey,
|
| /openbmc/docs/designs/ |
| H A D | event-logging.md | 22 ### Redfish LogEntry and Message Registry 42 versioning, Redfish has Message Registries. A message registry is a versioned 56 "Message": "A LAN Disconnect on %1 was detected on system %2.", 72 …"Message": "A LAN Disconnnect on EthernetInterface 1 was detected on system /redfish/v1/Systems/1.… 78 The `Message` contains a human readable string which was created by applying the 79 `MessageArgs` to the placeholders from the `Message` field in the registry. 167 into Redfish `LogEntries`, but this support does not reference a Message 171 `Message` field of the `LogEntry`. Furthermore, these regular-expressions are 185 Message Registry and the reporting application. It also requires every 215 transformed into relevant data sets, such as Redfish Message Registries. [all …]
|
| /openbmc/bmcweb/redfish-core/include/utils/ |
| H A D | dbus_event_log_entry.hpp | 20 std::string Message; member 39 "Message", entry.Message, in fillDbusEventLogEntryFromPropertyMap()
|
| /openbmc/openbmc/meta-openembedded/meta-perl/recipes-perl/libdigest/ |
| H A D | libdigest-hmac-perl_1.05.bb | 1 SUMMARY = "Keyed-Hashing for Message Authentication" 2 DESCRIPTION = "Keyed-Hashing for Message Authentication"
|
| /openbmc/u-boot/drivers/firmware/ |
| H A D | Kconfig | 13 tristate "TI System Control Interface (TISCI) Message Protocol" 17 TI System Control Interface (TISCI) Message Protocol is used to manage
|