Lines Matching defs:i_objectPath
258 nlohmann::json VpdTool::getFruProperties(const std::string& i_objectPath) const
261 if (!isFruPresent(i_objectPath))
270 (i_objectPath.find(constants::baseInventoryPath) == std::string::npos)
271 ? i_objectPath
272 : i_objectPath.substr(strlen(constants::baseInventoryPath));
279 i_objectPath, std::vector<std::string>{});
287 populateFruJson(i_objectPath, l_fruObject, l_interfaceList);
290 const auto l_typePropertyJson = getFruTypeProperty(i_objectPath);
305 const std::string& i_objectPath, const std::string& i_interface,
315 i_objectPath, i_interface, i_propertyName);
352 << " value for FRU path: " << i_objectPath
751 const std::string& i_objectPath) const noexcept
757 i_objectPath, std::vector<std::string>{constants::inventoryItemInf});
778 bool VpdTool::isFruPresent(const std::string& i_objectPath) const noexcept
786 constants::inventoryManagerService, i_objectPath,
798 // << i_objectPath << " Error: " << l_ex.what() <<