Home
last modified time | relevance | path

Searched refs:aggregationSources (Results 1 – 2 of 2) sorted by relevance

/openbmc/bmcweb/redfish-core/lib/
H A Daggregation_service.hpp181 auto it = aggregator.aggregationSources.find(aggregationSourceId); in populateAggregationSource()
182 if (it != aggregator.aggregationSources.end() && in populateAggregationSource()
296 aggregator.aggregationSources) in handleAggregationSourceCollectionPost()
317 aggregator.aggregationSources.emplace( in handleAggregationSourceCollectionPost()
360 auto it = aggregator.aggregationSources.find(aggregationSourceId); in handleAggregationSourcePatch()
361 if (it != aggregator.aggregationSources.end()) in handleAggregationSourcePatch()
410 size_t deleted = RedfishAggregator::getInstance().aggregationSources.erase( in handleAggregationSourceDelete()
/openbmc/bmcweb/redfish-core/include/
H A Dredfish_aggregator.hpp901 std::unordered_map<std::string, AggregationSource> aggregationSources;
914 auto it = aggregationSources.find(prefix); in prepareAggregationHeaders()
915 if (it != aggregationSources.end()) in prepareAggregationHeaders()
939 // Extract just the URLs from aggregationSources for the handler in getSatelliteConfigs()
941 for (const auto& [prefix, source] : aggregationSources) in getSatelliteConfigs()
1411 // For now 5B247A_ wont be in the aggregationSources map so in segmentHasPrefix()
1429 return aggregationSources.contains(prefix); in segmentHasPrefix()
902 std::unordered_map<std::string, AggregationSource> aggregationSources; global() member in redfish::RedfishAggregator