Lines Matching full:ec

47         [asyncResp](const boost::system::error_code& ec, const bool blinking) {  in getIndicatorLedState()  argument
50 if (ec == boost::system::errc::invalid_argument) in getIndicatorLedState()
59 if (!ec && blinking) in getIndicatorLedState()
136 ledBlinkng](const boost::system::error_code& ec) mutable { in setIndicatorLedState() argument
137 if (ec) in setIndicatorLedState()
171 [asyncResp](const boost::system::error_code& ec, const bool blinking) { in getSystemLocationIndicatorActive() argument
174 if (ec == boost::system::errc::invalid_argument) in getSystemLocationIndicatorActive()
183 if (!ec && blinking) in getSystemLocationIndicatorActive()
230 [asyncResp, ledState](const boost::system::error_code& ec) { in setSystemLocationIndicatorActive() argument
231 if (ec) in setSystemLocationIndicatorActive()
247 const std::string& objPath, const boost::system::error_code& ec, in handleLedGroupSubtree() argument
249 const std::function<void(const boost::system::error_code& ec, in handleLedGroupSubtree() argument
253 if (ec) in handleLedGroupSubtree()
256 callback(ec, "", ""); in handleLedGroupSubtree()
266 callback(ec, "", ""); in handleLedGroupSubtree()
276 callback(ec, "", ""); in handleLedGroupSubtree()
282 callback(ec, ledGroupPath, service); in handleLedGroupSubtree()
288 std::function<void(const boost::system::error_code& ec, in getLedGroupPath() argument
301 const boost::system::error_code& ec, in getLedGroupPath()
303 handleLedGroupSubtree(objPath, ec, subtree, callback); in getLedGroupPath()
309 const boost::system::error_code& ec, bool assert) in afterGetLedState() argument
311 if (ec) in afterGetLedState()
313 if (ec.value() != EBADR) in afterGetLedState()
316 ec.value()); in afterGetLedState()
326 const boost::system::error_code& ec, in getLedState() argument
330 if (ec) in getLedState()
332 if (ec.value() != EBADR) in getLedState()
334 BMCWEB_LOG_ERROR("DBUS response error {}", ec.value()); in getLedState()
367 [asyncResp](const boost::system::error_code& ec, in getLocationIndicatorActive()
370 getLedState(asyncResp, ec, ledGroupPath, service); in getLocationIndicatorActive()
375 bool ledState, const boost::system::error_code& ec, in setLedState() argument
379 if (ec) in setLedState()
381 if (ec.value() == EBADR) in setLedState()
387 BMCWEB_LOG_ERROR("DBUS response error {}", ec.value()); in setLedState()
419 [asyncResp, ledState](const boost::system::error_code& ec, in setLocationIndicatorActive()
422 setLedState(asyncResp, ledState, ec, ledGroupPath, service); in setLocationIndicatorActive()