Lines Matching full:eid
47 const std::string& path, uint8_t eid, int sendRecvMsgResult, in processQueryDeviceIdResponse() argument
53 … "Error processing MCTP endpoint with eid {EID} : sending message over MCTP failed, rc={RC}", in processQueryDeviceIdResponse()
54 "EID", eid, "RC", sendRecvMsgResult); in processQueryDeviceIdResponse()
70 …"Error processing MCTP endpoint with eid {EID} : decode failed, rc={RC}, cc={CC}, reasonCode={RESC… in processQueryDeviceIdResponse()
71 "EID", eid, "RC", rc, "CC", cc, "RESC", reasonCode); in processQueryDeviceIdResponse()
80 "Found the GPU with EID {EID}, DeviceType {DEVTYPE}, InstanceId {IID}.", in processQueryDeviceIdResponse()
81 "EID", eid, "DEVTYPE", responseDeviceType, "IID", in processQueryDeviceIdResponse()
88 std::make_shared<GpuDevice>(configs, gpuName, path, conn, eid, in processQueryDeviceIdResponse()
96 "Found the SMA Device with EID {EID}, DeviceType {DEVTYPE}, InstanceId {IID}.", in processQueryDeviceIdResponse()
97 "EID", eid, "DEVTYPE", responseDeviceType, "IID", in processQueryDeviceIdResponse()
104 std::make_shared<SmaDevice>(configs, smaName, path, conn, eid, in processQueryDeviceIdResponse()
119 const std::string& path, uint8_t eid) in queryDeviceIdentification() argument
132 "Error processing MCTP endpoint with eid {EID} : encode failed, rc={RC}", in queryDeviceIdentification()
133 "EID", eid, "RC", rc); in queryDeviceIdentification()
138 eid, *queryDeviceIdentificationRequest, in queryDeviceIdentification()
141 configs, path, eid, queryDeviceIdentificationRequest, in queryDeviceIdentification()
145 configs, path, eid, sendRecvMsgResult, in queryDeviceIdentification()
168 auto hasEid = endpoint.find("EID"); in processEndpoint()
169 uint8_t eid{}; in processEndpoint() local
176 eid = *eidPtr; in processEndpoint()
181 "Error processing MCTP endpoint: Property EID does not have valid type."); in processEndpoint()
188 "Error processing MCTP endpoint: Property EID not found in the configuration."); in processEndpoint()
206 …"Error processing MCTP endpoint with eid {EID} : Property SupportedMessageTypes does not have vali… in processEndpoint()
207 "EID", eid); in processEndpoint()
214 …"Error processing MCTP endpoint with eid {EID} : Property SupportedMessageTypes not found in the c… in processEndpoint()
215 "EID", eid); in processEndpoint()
222 lg2::info("Found OCP MCTP VDM Endpoint with ID {EID}", "EID", eid); in processEndpoint()
224 conn, mctpRequester, configs, path, eid); in processEndpoint()