Lines Matching refs:entryId
72 return entryId; in commit()
80 return entryId; in commitWithLvl()
226 entryId++; in createEntry()
229 infoErrors.push_back(entryId); in createEntry()
233 realErrors.push_back(entryId); in createEntry()
238 auto objPath = std::string(OBJ_ENTRY) + '/' + std::to_string(entryId); in createEntry()
245 busLog, objPath, entryId, in createEntry()
248 std::move(objects), fwVersion, getEntrySerializePath(entryId), *this); in createEntry()
255 quiesceOnError(entryId); in createEntry()
259 entries.insert(std::make_pair(entryId, std::move(e))); in createEntry()
261 doExtensionLogCreate(*entries.find(entryId)->second, ffdc); in createEntry()
400 void Manager::quiesceOnError(const uint32_t entryId) in quiesceOnError() argument
405 return obj->entryId == entryId; in quiesceOnError()
418 std::string(OBJ_LOGGING) + "/block" + std::to_string(entryId); in quiesceOnError()
419 auto blockObj = std::make_unique<Block>(this->busLog, blockPath, entryId); in quiesceOnError()
424 auto entryPath = std::string(OBJ_ENTRY) + '/' + std::to_string(entryId); in quiesceOnError()
432 std::make_pair(entryId, std::move(callback))); in quiesceOnError()
486 void Manager::checkAndRemoveBlockingError(uint32_t entryId) in checkAndRemoveBlockingError() argument
491 return obj->entryId == entryId; in checkAndRemoveBlockingError()
499 auto resolveFind = propChangedEntryCallback.find(entryId); in checkAndRemoveBlockingError()
534 entryId = 0; in eraseAll()
561 entryId = std::ranges::max_element(entries, [](const auto& a, in eraseAll()
568 entryId = 0; in eraseAll()
574 void Manager::erase(uint32_t entryId) in erase() argument
576 auto entryFound = entries.find(entryId); in erase()
584 func(entryId, prohibited); in erase()
606 errorPath /= std::to_string(entryId); in erase()
618 removeId(infoErrors, entryId); in erase()
622 removeId(realErrors, entryId); in erase()
626 checkAndRemoveBlockingError(entryId); in erase()
632 remove(entryId); in erase()
644 lg2::error("Invalid entry ID ({ID}) to delete", "ID", entryId); in erase()
695 entryId = entries.rbegin()->first; in restore()