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(), in processError()
87 result) != 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.cpp951 std::string targetEntry; in ipmiStorageGetSELEntry() local
962 if (!std::getline(logStream, targetEntry)) in ipmiStorageGetSELEntry()
979 targetEntry = line; in ipmiStorageGetSELEntry()
984 if (!findSELEntry(targetID, selLogFiles, targetEntry)) in ipmiStorageGetSELEntry()
993 size_t space = targetEntry.find_first_of(" "); in ipmiStorageGetSELEntry()
998 std::string entryTimestamp = targetEntry.substr(0, space); in ipmiStorageGetSELEntry()
1000 size_t entryStart = targetEntry.find_first_not_of(" ", space); in ipmiStorageGetSELEntry()
1005 std::string_view entry(targetEntry); in ipmiStorageGetSELEntry()
/openbmc/phosphor-host-ipmid/dbus-sdr/
H A Dstoragecommands.cpp934 std::string targetEntry; in ipmiStorageGetSELEntry() local
945 if (!std::getline(logStream, targetEntry)) in ipmiStorageGetSELEntry()
962 targetEntry = line; in ipmiStorageGetSELEntry()
967 if (!findSELEntry(targetID, selLogFiles, targetEntry)) in ipmiStorageGetSELEntry()
976 size_t space = targetEntry.find_first_of(" "); in ipmiStorageGetSELEntry()
981 std::string entryTimestamp = targetEntry.substr(0, space); in ipmiStorageGetSELEntry()
983 size_t entryStart = targetEntry.find_first_not_of(" ", space); in ipmiStorageGetSELEntry()
988 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()