Lines Matching +full:core +full:- +full:dump
5 #include <phosphor-logging/lg2.hpp>
13 namespace dump namespace
15 namespace core namespace
30 As per coredump source code systemd-coredump uses below format in watchCallback()
32 /var/lib/systemd/coredump/core.%s.%s." SD_ID128_FORMAT_STR “ in watchCallback()
33 systemd-coredump also creates temporary file in core file path prior in watchCallback()
34 to actual core file creation. Checking the file name format will help in watchCallback()
35 to limit dump creation only for the new core files. in watchCallback()
37 if ("core" == name.substr(0, name.find('.'))) in watchCallback()
39 // Consider only file name start with "core." in watchCallback()
55 constexpr auto DUMP_CREATE_IFACE = "xyz.openbmc_project.Dump.Create"; in createHelper()
70 lg2::error("Failed to GetObject on Dump.Create: {ERROR}", "ERROR", e); in createHelper()
79 const auto& host = mapperResponse.cbegin()->first; in createHelper()
82 phosphor::dump::DumpCreateParams params; in createHelper()
84 sdbusplus::common::xyz::openbmc_project::dump::Create::CreateParameters; in createHelper()
86 sdbusplus::common::xyz::openbmc_project::dump::Create::DumpType; in createHelper()
87 using DumpIntr = sdbusplus::common::xyz::openbmc_project::dump::Create; in createHelper()
100 lg2::error("Failed to create dump: {ERROR}", "ERROR", e); in createHelper()
104 } // namespace core
105 } // namespace dump