| /openbmc/openbmc/poky/documentation/tools/host_packages_scripts/ |
| H A D | fedora_docs_pdf.sh | 1 …collection-fontsextra texlive-collection-fontsrecommended texlive-collection-latex texlive-collect…
|
| H A D | opensuse_docs_pdf.sh | 1 …collection-fontsextra texlive-collection-fontsrecommended texlive-collection-latex texlive-collect…
|
| H A D | almalinux_docs_pdf.sh | 1 …nstall latexmk texlive-collection-fontsrecommended texlive-collection-latex texlive-collection-lat…
|
| /openbmc/openbmc/poky/bitbake/lib/layerindexlib/tests/ |
| H A D | cooker.py | 74 def _check(collection, expected): argument 75 self.logger.debug("Looking for collection %s..." % collection) 76 result = self.layerindex.find_collection(collection) 78 … self.assertIsNotNone(result, msg="Did not find %s when it shouldn't be there" % collection) 80 self.assertIsNone(result, msg="Found %s when it should be there" % collection) 89 for collection,result in tests: 90 _check(collection, result) 97 … self.assertIsNotNone(result, msg="Did not find %s when it shouldn't be there" % collection) 99 self.assertIsNone(result, msg="Found %s when it should be there" % collection) 108 for collection,result in tests: [all …]
|
| H A D | restapi.py | 130 def _check(collection, expected): argument 131 self.logger.debug("Looking for collection %s..." % collection) 132 result = self.layerindex.find_collection(collection) 134 … self.assertIsNotNone(result, msg="Did not find %s when it should be there" % collection) 136 self.assertIsNone(result, msg="Found %s when it shouldn't be there" % collection) 145 for collection,result in tests: 146 _check(collection, result) 158 … self.assertIsNotNone(result, msg="Did not find %s when it should be there" % collection) 160 self.assertIsNone(result, msg="Found %s when it shouldn't be there" % collection) 169 for collection,result in tests: [all …]
|
| /openbmc/openpower-debug-collector/ |
| H A D | meson.options | 3 # Feature to enable hostboot dump collection when watchdog times out 5 'hostboot-dump-collection', 8 description: 'Enables hostboot dump collection', 11 # Feature to enable the dump collection 13 'dump-collection', 16 description: 'Enables dump collection',
|
| H A D | meson.build | 28 if get_option('hostboot-dump-collection').allowed() 44 if get_option('dump-collection').allowed()
|
| /openbmc/openbmc/poky/bitbake/lib/bb/tests/ |
| H A D | cooker.py | 28 collection = path.split('/')[-1] 33 … d.setVar('BBFILE_COLLECTIONS', (d.getVar('BBFILE_COLLECTIONS') or "") + " " + collection) 34 d.setVar('BBFILE_PATTERN_%s' % (collection), pattern) 35 d.setVar('BBFILE_PRIORITY_%s' % (collection), priority) 37 return (collection, pattern, regex, priority) 64 collection = bb.cooker.CookerCollectFiles(bbfile_config_priorities) 65 collection.collection_priorities(pkgfns, pkgfns, self.d)
|
| /openbmc/phosphor-pid-control/dbus/ |
| H A D | dbuspassiveredundancy.cpp | 83 ControlFanRedundancy::property_names::collection); in DbusPassiveRedundancy() 84 std::variant<std::vector<std::string>> collection; in DbusPassiveRedundancy() local 89 reply.read(collection); in DbusPassiveRedundancy() 97 auto data = std::get<std::vector<std::string>>(collection); in DbusPassiveRedundancy() 177 std::vector<std::string> collection = in populateFailures() local 179 getAll[ControlFanRedundancy::property_names::collection]); in populateFailures() 180 failed.insert(collection.begin(), collection.end()); in populateFailures()
|
| /openbmc/bmcweb/redfish-core/include/utils/ |
| H A D | eventlog_utils.hpp | 59 LogServiceParentCollection collection) in logServiceParentCollectionToString() argument 62 switch (collection) in logServiceParentCollectionToString() 78 LogServiceParentCollection collection) in getMemberIdFromParentCollection() argument 82 switch (collection) in getMemberIdFromParentCollection() 99 LogServiceParentCollection collection) in getLogEntryDescriptorFromParentCollection() argument 102 switch (collection) in getLogEntryDescriptorFromParentCollection() 119 LogServiceParentCollection collection) in handleSystemsAndManagersEventLogServiceGet() argument 122 logServiceParentCollectionToString(collection); in handleSystemsAndManagersEventLogServiceGet() 124 getMemberIdFromParentCollection(collection); in handleSystemsAndManagersEventLogServiceGet() 126 getLogEntryDescriptorFromParentCollection(collection); in handleSystemsAndManagersEventLogServiceGet() [all …]
|
| /openbmc/webui-vue/src/store/modules/HardwareStatus/ |
| H A D | FanStore.js | 49 const collection = await dispatch('getChassisCollection'); 50 if (!collection || collection.length === 0) return; 52 .all(collection.map((chassis) => dispatch('getChassisFans', chassis)))
|
| H A D | PowerSupplyStore.js | 58 const collection = await dispatch('getChassisCollection'); 59 if (!collection) return; 61 .all(collection.map((chassis) => dispatch('getChassisPower', chassis)))
|
| /openbmc/webui-vue/src/store/modules/ResourceManagement/ |
| H A D | PowerControlStore.js | 37 const collection = await dispatch('getChassisCollection'); 38 if (!collection || collection.length === 0) return; 40 .get(`${collection[0]}`)
|
| /openbmc/telemetry/src/utils/ |
| H A D | conversion_trigger.hpp | 49 bool isFirstElementOfType(const std::vector<VariantT>& collection) in isFirstElementOfType() argument 51 if (collection.empty()) in isFirstElementOfType() 55 return std::holds_alternative<AlternativeT>(*collection.begin()); in isFirstElementOfType()
|
| /openbmc/phosphor-webui/app/common/directives/ |
| H A D | dirPagination.js | 120 function(collection) { argument 121 if (collection) { 122 var collectionLength = (collection instanceof Array) ? 123 collection.length : 124 Object.keys(collection).length; 537 return function(collection, itemsPerPage, paginationId) { argument 547 if (angular.isObject(collection)) { 558 if (collection instanceof Array) { 560 return collection.slice(start, end); 565 angular.forEach(keys(collection).slice(start, end), function(key) { [all …]
|
| /openbmc/phosphor-health-monitor/ |
| H A D | meson.options | 5 'monitor-collection-interval', 8 description: 'The health monitor collection interval in seconds.',
|
| H A D | health_monitor.cpp | 44 for (auto& [type, collection] : collections) in run() 47 collection->read(); in run()
|
| /openbmc/openbmc-test-automation/tools/ |
| H A D | myffdc.robot | 2 Documentation This module is for triggering data collection on demand 39 ... variables required for FFDC collection. 42 Log To Console Manual FFDC collection
|
| /openbmc/openbmc-test-automation/systest/collection/ |
| H A D | bmc_collect_esels.robot | 18 ${error_logs_flagged_rest} Rest error log collection excluded 19 ${event_logs_flagged_redfish} Redfish event log collection excluded 20 ${rest_error_logs} Rest error log collection excluded 21 ${redfish_event_logs} Redfish error log collection excluded
|
| H A D | bmc_collect_sensors.robot | 20 ${sensors_values_rest} Rest sensors collection excluded 21 ${sensors_values_redfish} Redfish sensors collection excluded 22 ${sensors_flagged_rest} Rest sensors collection excluded 23 ${sensors_flagged_redfish} Redfish sensors collection excluded
|
| /openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/ |
| H A D | python3-pyasn1-modules_0.4.2.bb | 1 SUMMARY = "A collection of ASN.1-based protocols modules." 2 DESCRIPTION = "A collection of ASN.1 modules expressed in form of pyasn1\
|
| /openbmc/openbmc-test-automation/lib/ |
| H A D | openbmc_ffdc.robot | 2 Documentation This module is for data collection on test case failure 44 ... other data collection methods 51 ... 3. Delete error logs and BMC dumps post FFDC collection.
|
| /openbmc/openbmc/meta-security/meta-tpm/recipes-tpm1/tpm-quote-tools/ |
| H A D | tpm-quote-tools_1.0.4.bb | 1 SUMMARY = "The TPM Quote Tools is a collection of programs that provide support \ 4 DESCRIPTION = "The TPM Quote Tools is a collection of programs that provide support \
|
| /openbmc/openpower-vpd-parser/docs/ |
| H A D | system-json_README.md | 61 initialization or data collection).They ensure tasks are handled reliably by 69 collection depends on this step and may fail if it is skipped. 71 primary task (such as VPD collection) concludes successfully. Its purpose is 79 Represents a specific phase within the group(e.g.,collection, deletion). 82 - **collection** - The collection phase is executed when the FRU's VPD data is 177 "collection": 200 "collection": 218 "collection":
|
| /openbmc/openbmc/poky/bitbake/lib/layerindexlib/ |
| H A D | cooker.py | 200 collection = index.layerBranches[layerBranchId].collection 206 bb.fatal('Error parsing LAYERDEPENDS_%s: %s' % (collection, str(vse))) 228 deps = d.getVar("LAYERDEPENDS_%s" % collection) 232 deps = d.getVar("LAYERRECOMMENDS_%s" % collection) 272 depBranchId = collection[layer]
|