Home
last modified time | relevance | path

Searched refs:targetEntry (Results 1 – 6 of 6) sorted by relevance

/openbmc/phosphor-state-manager/
H A Dsystemd_target_signal.cpp81 auto targetEntry = this->targetData.find(unit); in processError() local
82 if (targetEntry != this->targetData.end()) in processError()
85 if (std::find(targetEntry->second.errorsToMonitor.begin(), in processError()
86 targetEntry->second.errorsToMonitor.end(), result) != in processError()
87 targetEntry->second.errorsToMonitor.end()) in processError()
95 return (targetEntry->second.errorToLog); in processError()
H A Dsystemd_target_parser.hpp10 struct targetEntry struct
17 using TargetErrorData = std::map<std::string, targetEntry>;
H A Dsystemd_target_parser.cpp54 targetEntry entry; in parseFiles()
/openbmc/intel-ipmi-oem/src/
H A Dstoragecommands.cpp877 std::string targetEntry; in ipmiStorageGetSELEntry() local
888 if (!std::getline(logStream, targetEntry)) in ipmiStorageGetSELEntry()
905 targetEntry = line; in ipmiStorageGetSELEntry()
910 if (!findSELEntry(targetID, selLogFiles, targetEntry)) in ipmiStorageGetSELEntry()
919 size_t space = targetEntry.find_first_of(" "); in ipmiStorageGetSELEntry()
924 std::string entryTimestamp = targetEntry.substr(0, space); in ipmiStorageGetSELEntry()
926 size_t entryStart = targetEntry.find_first_not_of(" ", space); in ipmiStorageGetSELEntry()
931 std::string_view entry(targetEntry); in ipmiStorageGetSELEntry()
/openbmc/phosphor-host-ipmid/dbus-sdr/
H A Dstoragecommands.cpp930 std::string targetEntry; in ipmiStorageGetSELEntry() local
941 if (!std::getline(logStream, targetEntry)) in ipmiStorageGetSELEntry()
958 targetEntry = line; in ipmiStorageGetSELEntry()
963 if (!findSELEntry(targetID, selLogFiles, targetEntry)) in ipmiStorageGetSELEntry()
972 size_t space = targetEntry.find_first_of(" "); in ipmiStorageGetSELEntry()
977 std::string entryTimestamp = targetEntry.substr(0, space); in ipmiStorageGetSELEntry()
979 size_t entryStart = targetEntry.find_first_not_of(" ", space); in ipmiStorageGetSELEntry()
984 std::string_view entry(targetEntry); in ipmiStorageGetSELEntry()
/openbmc/phosphor-state-manager/test/
H A Dsystemd_parser.cpp63 targetEntry tgt = targetData["obmc-chassis-poweron@0.target"]; in TEST()