Lines Matching +full:auto +full:- +full:detection
7 #include <phosphor-logging/elog-errors.hpp>
8 #include <phosphor-logging/lg2.hpp>
50 auto bus = sdbusplus::bus::new_default(); in createError()
51 auto method = bus.new_method_call( in createError()
59 auto resp = bus.call(method); in createError()
64 "sdbusplus D-Bus call exception, error {ERROR} trying to create " in createError()
65 "an error for ramoops detection", in createError()
67 // This is a best-effort logging situation so don't throw anything in createError()
71 lg2::error("D-bus call exception: {ERROR}", "ERROR", e); in createError()
72 // This is a best-effort logging situation so don't throw anything in createError()
78 constexpr auto MAPPER_BUSNAME = "xyz.openbmc_project.ObjectMapper"; in createHelper()
79 constexpr auto MAPPER_PATH = "/xyz/openbmc_project/object_mapper"; in createHelper()
80 constexpr auto MAPPER_INTERFACE = "xyz.openbmc_project.ObjectMapper"; in createHelper()
81 constexpr auto DUMP_CREATE_IFACE = "xyz.openbmc_project.Dump.Create"; in createHelper()
83 auto b = sdbusplus::bus::new_default(); in createHelper()
84 auto mapper = b.new_method_call(MAPPER_BUSNAME, MAPPER_PATH, in createHelper()
91 auto mapperResponseMsg = b.call(mapper); in createHelper()
106 const auto& host = mapperResponse.cbegin()->first; in createHelper()
107 auto m = b.new_method_call(host.c_str(), BMC_DUMP_OBJPATH, in createHelper()