Lines Matching full:ec
72 const std::string& chassisId, const boost::system::error_code& ec,
75 if (ec)
77 if (ec.value() == boost::system::errc::io_error)
83 if (ec.value() != EBADR)
85 BMCWEB_LOG_ERROR("DBUS response error{}", ec.value());
149 const boost::system::error_code& ec,
151 doPowerSupplyCollection(asyncResp, chassisId, ec, subtreePaths);
170 const std::string& powerSupplyId, const boost::system::error_code& ec,
175 if (ec)
177 if (ec.value() == boost::system::errc::io_error)
183 if (ec.value() != EBADR)
185 BMCWEB_LOG_ERROR("DBUS response error{}", ec.value());
218 const boost::system::error_code& ec,
220 afterGetValidPowerSupplyPath(asyncResp, powerSupplyId, ec, subtree,
231 [asyncResp](const boost::system::error_code& ec, const bool value) {
232 if (ec)
234 if (ec.value() != EBADR)
237 ec.value());
258 [asyncResp](const boost::system::error_code& ec, const bool value) {
259 if (ec)
261 if (ec.value() != EBADR)
264 ec.value());
284 [asyncResp](const boost::system::error_code& ec,
286 if (ec)
288 if (ec.value() != EBADR)
291 ec.value());
324 [asyncResp](const boost::system::error_code& ec,
326 if (ec)
328 if (ec.value() != EBADR)
332 ec.value());
348 [asyncResp](const boost::system::error_code& ec,
350 if (ec)
352 if (ec.value() != EBADR)
355 ec.value());
367 const boost::system::error_code& ec, uint32_t value)
369 if (ec)
371 if (ec.value() != EBADR)
374 ec.value());
395 const boost::system::error_code& ec,
398 if (ec)
400 if (ec.value() != EBADR)
403 ec.value());
442 [asyncResp](const boost::system::error_code& ec,
444 handlePowerSupplyAttributesSubTreeResponse(asyncResp, ec, subtree);