Home
last modified time | relevance | path

Searched refs:systemConfiguration (Results 1 – 9 of 9) sorted by relevance

/openbmc/entity-manager/src/entity_manager/
H A Ddbus_interface.hpp38 nlohmann::json& systemConfiguration,
42 nlohmann::json& systemConfiguration, const std::string& jsonPointerPath,
51 nlohmann::json& systemConfiguration);
56 nlohmann::json& systemConfiguration, const std::string& jsonPointerPath,
61 nlohmann::json& systemConfiguration,
83 nlohmann::json& systemConfiguration, in addArrayToDbus() argument
104 [&systemConfiguration, in addArrayToDbus()
110 systemConfiguration)) in addArrayToDbus()
115 if (!writeJsonFiles(systemConfiguration)) in addArrayToDbus()
128 nlohmann::json& systemConfiguration, in addProperty() argument
[all …]
H A Ddbus_interface.cpp69 nlohmann::json& systemConfiguration) in createDeleteObjectMethod() argument
73 "Delete", [this, &systemConfiguration, interface, in createDeleteObjectMethod()
84 systemConfiguration[ptr] = nullptr; in createDeleteObjectMethod()
92 if (!writeJsonFiles(systemConfiguration)) in createDeleteObjectMethod()
147 nlohmann::json& systemConfiguration, const std::string& path, in populateInterfacePropertyFromJson() argument
160 systemConfiguration, path); in populateInterfacePropertyFromJson()
166 systemConfiguration, path); in populateInterfacePropertyFromJson()
172 systemConfiguration, path); in populateInterfacePropertyFromJson()
178 systemConfiguration, path); in populateInterfacePropertyFromJson()
184 systemConfiguration, path); in populateInterfacePropertyFromJson()
[all …]
H A Dentity_manager.cpp62 systemConfiguration(nlohmann::json::object()), io(io), in EntityManager()
142 auto boardValues = systemConfiguration[boardId]; in postBoardToDBus()
180 systemConfiguration, boardNameOrig); in postBoardToDBus()
183 systemConfiguration, jsonPointerPath, boardIface, boardValues); in postBoardToDBus()
195 systemConfiguration, jsonPointerPath + propName, iface, in postBoardToDBus()
274 systemConfiguration, jsonPointerPath, bmcIface, item, in postExposesRecordsToDBus()
286 systemConfiguration, jsonPointerPath, systemIface, item, in postExposesRecordsToDBus()
310 systemConfiguration, jsonPointerPath, itemIface, item, in postExposesRecordsToDBus()
330 systemConfiguration, jsonPointerPath, objectIface, config, in postConfigurationRecord()
373 systemConfiguration, in postConfigurationRecord()
[all …]
H A Dconfiguration.hpp29 bool writeJsonFiles(const nlohmann::json& systemConfiguration);
33 nlohmann::json& systemConfiguration) in setJsonFromPointer() argument
38 nlohmann::json& ref = systemConfiguration[ptr]; in setJsonFromPointer()
H A Dperform_scan.cpp358 nlohmann::json& systemConfiguration, const std::string& recordName, in applyExposeActions() argument
378 for (const auto& [configId, config] : systemConfiguration.items()) in applyExposeActions()
446 nlohmann::json& value, nlohmann::json& systemConfiguration) in applyTemplateAndExposeActions() argument
459 applyExposeActions(systemConfiguration, recordName, *exposeObj, key, in applyTemplateAndExposeActions()
481 auto record = _em.systemConfiguration.find(recordName); in updateSystemConfiguration()
482 if (record == _em.systemConfiguration.end()) in updateSystemConfiguration()
493 _em.systemConfiguration[recordName] = *record; in updateSystemConfiguration()
575 _em.systemConfiguration[recordName] = record; in updateSystemConfiguration()
591 _em.systemConfiguration); in updateSystemConfiguration()
598 findExpose->second, _em.systemConfiguration); in updateSystemConfiguration()
[all …]
H A Doverlay.hpp9 bool loadOverlays(const nlohmann::json& systemConfiguration,
H A Dconfiguration.cpp193 bool writeJsonFiles(const nlohmann::json& systemConfiguration) in writeJsonFiles() argument
215 output << systemConfiguration.dump(4); in writeJsonFiles()
H A Doverlay.cpp266 bool loadOverlays(const nlohmann::json& systemConfiguration, in loadOverlays() argument
272 for (auto entity = systemConfiguration.begin(); in loadOverlays()
273 entity != systemConfiguration.end(); entity++) in loadOverlays()
H A Dentity_manager.hpp42 nlohmann::json systemConfiguration; member in EntityManager