Home
last modified time | relevance | path

Searched refs:reqMsg (Results 1 – 9 of 9) sorted by relevance

/openbmc/phosphor-dbus-monitor/src/
H A Dsdbusplus.hpp46 auto reqMsg = getBus().new_method_call( in callMethodNoReply() local
48 reqMsg.append(std::forward<Args>(args)...); in callMethodNoReply()
49 getBus().call_noreply(reqMsg); in callMethodNoReply()
62 auto reqMsg = getBus().new_method_call( in callMethod() local
64 reqMsg.append(std::forward<Args>(args)...); in callMethod()
65 return getBus().call(reqMsg); in callMethod()
/openbmc/phosphor-power/phosphor-regulators/src/regsctl/
H A Dutility.hpp26 auto reqMsg = in callMethod() local
28 reqMsg.append(std::forward<Args>(args)...); in callMethod()
33 return bus.call(reqMsg, timeout); in callMethod()
/openbmc/libpldm/tests/dsp/
H A Dfru.cpp556 auto reqMsg = reinterpret_cast<pldm_msg*>(request.data()); in TEST() local
560 recordType, fieldType, transferOpFlag, reqMsg, payLoadLength); in TEST()
563 EXPECT_EQ(instanceId, reqMsg->hdr.instance_id); in TEST()
567 reinterpret_cast<pldm_get_fru_record_by_option_req*>(reqMsg->payload); in TEST()
588 auto reqMsg = reinterpret_cast<pldm_msg*>(request.data()); in TEST() local
590 rc = encode_get_fru_record_by_option_req(1, 2, 3, 4, 5, 6, 0, reqMsg, in TEST()
610 auto reqMsg = reinterpret_cast<pldm_msg*>(request.data()); in TEST() local
614 recordType, fieldType, transferOpFlag, reqMsg, payLoadLength); in TEST()
626 reqMsg, payLoadLength, &retDataTransferHandle, &retFruTableHandle, in TEST()
644 auto reqMsg = reinterpret_cast<pldm_msg*>(request.data()); in TEST() local
[all …]
/openbmc/phosphor-dbus-monitor/mslverify/
H A Dutil.hpp41 auto reqMsg = bus.new_method_call(busName.c_str(), path.c_str(), in callMethod() local
43 reqMsg.append(std::forward<Args>(args)...); in callMethod()
46 return bus.call(reqMsg); in callMethod()
/openbmc/phosphor-power/phosphor-regulators/src/
H A Derror_logging.cpp228 auto reqMsg = bus.new_method_call(service, objPath, interface, method); in logError() local
229 reqMsg.append(message, severity, additionalData, ffdcTuples); in logError()
230 auto respMsg = bus.call(reqMsg); in logError()
/openbmc/phosphor-fan-presence/
H A Dsdbusplus.hpp126 auto reqMsg = bus.new_method_call(busName.c_str(), path.c_str(), in callMethod() local
128 reqMsg.append(std::forward<Args>(args)...); in callMethod()
131 auto respMsg = bus.call(reqMsg); in callMethod()
406 auto reqMsg = bus.new_method_call(busName.c_str(), path.c_str(), in callMethodAndReturn() local
408 reqMsg.append(std::forward<Args>(args)...); in callMethodAndReturn()
409 auto respMsg = bus.call(reqMsg); in callMethodAndReturn()
/openbmc/pldm/pldmtool/
H A Dpldm_fru_cmd.cpp364 auto reqMsg = reinterpret_cast<pldm_msg*>(requestMsg.data()); in createRequestMsg() local
369 reqMsg, payloadLength); in createRequestMsg()
/openbmc/pldm/requester/
H A Dhandler.hpp88 std::vector<uint8_t> reqMsg; //!< Request messages queue member
211 std::move(requestMsg->reqMsg), numRetries, responseTimeOut, in pollEndpointQueue()
/openbmc/fb-ipmi-oem/src/
H A Dselcommands.cpp1647 auto reqMsg = bus.new_method_call( in logWithRetry() local
1650 reqMsg.append(logErr, severity, ad); in logWithRetry()
1655 bus.call(reqMsg); in logWithRetry()