Home
last modified time | relevance | path

Searched refs:registry (Results 1 – 25 of 162) sorted by relevance

1234567

/openbmc/openbmc/poky/meta/lib/oeqa/core/decorator/
H A Ddepends.py13 def _add_depends(registry, case, depends): argument
29 if not case_id in registry:
30 registry[case_id] = []
31 if not depend_id in registry[case_id]:
32 registry[case_id].append(depend_id)
83 def bind(self, registry, case): argument
84 super(OETestDepends, self).bind(registry, case)
85 if not registry.get('depends'):
86 registry['depends'] = {}
87 _add_depends(registry['depends'], case, self.depends)
[all …]
H A D__init__.py43 def bind(self, registry, case): argument
63 def discover(registry): argument
64 return registry['cases']
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/deqp-runner/deqp-runner/
H A D0001-cargo-Update-tempfile-to-latest-3.x.patch30 source = "registry+https://github.com/rust-lang/crates.io-index"
38 source = "registry+https://github.com/rust-lang/crates.io-index"
50 source = "registry+https://github.com/rust-lang/crates.io-index"
57 source = "registry+https://github.com/rust-lang/crates.io-index"
70 source = "registry+https://github.com/rust-lang/crates.io-index"
82 source = "registry+https://github.com/rust-lang/crates.io-index"
90 source = "registry+https://github.com/rust-lang/crates.io-index"
102 source = "registry+https://github.com/rust-lang/crates.io-index"
117 source = "registry+https://github.com/rust-lang/crates.io-index"
137 source = "registry+https://github.com/rust-lang/crates.io-index"
[all …]
H A D0001-deqp-runner-drop-zstd-support.patch23 source = "registry+https://github.com/rust-lang/crates.io-index"
39 source = "registry+https://github.com/rust-lang/crates.io-index"
45 -source = "registry+https://github.com/rust-lang/crates.io-index"
55 source = "registry+https://github.com/rust-lang/crates.io-index"
61 -source = "registry+https://github.com/rust-lang/crates.io-index"
69 source = "registry+https://github.com/rust-lang/crates.io-index"
75 -source = "registry+https://github.com/rust-lang/crates.io-index"
84 -source = "registry+https://github.com/rust-lang/crates.io-index"
93 -source = "registry+https://github.com/rust-lang/crates.io-index"
/openbmc/bmcweb/scripts/
H A Dparse_registries.py98 with open(file, "w") as registry:
102 registry.write(REGISTRY_HEADER.format(struct_name))
105 registry.write(
133 registry.write(
148 registry.write(
151 registry.write("\n },\n")
153 registry.write("},\n")
154 registry.write(
160 registry.write("\n};\n\nenum class Index\n{\n")
163 registry.write(" {} = {},\n".format(messageId, index))
[all …]
/openbmc/qemu/rust/
H A DCargo.lock8 source = "registry+https://github.com/rust-lang/crates.io-index"
14 source = "registry+https://github.com/rust-lang/crates.io-index"
24 source = "registry+https://github.com/rust-lang/crates.io-index"
37 source = "registry+https://github.com/rust-lang/crates.io-index"
51 source = "registry+https://github.com/rust-lang/crates.io-index"
60 source = "registry+https://github.com/rust-lang/crates.io-index"
76 source = "registry+https://github.com/rust-lang/crates.io-index"
88 source = "registry+https://github.com/rust-lang/crates.io-index"
99 source = "registry+https://github.com/rust-lang/crates.io-index"
126 source = "registry+https://github.com/rust-lang/crates.io-index"
[all …]
/openbmc/bmcweb/redfish-core/lib/
H A Dmessage_registries.hpp71 const std::string& registry) in handleMessageRoutesMessageRegistryFileGet() argument
79 registries::getRegistryFromPrefix(registry); in handleMessageRoutesMessageRegistryFileGet()
84 registry); in handleMessageRoutesMessageRegistryFileGet()
87 if (registry == "OpenBMC") in handleMessageRoutesMessageRegistryFileGet()
95 boost::urls::format("/redfish/v1/Registries/{}", registry); in handleMessageRoutesMessageRegistryFileGet()
98 asyncResp->res.jsonValue["Name"] = registry + " Message Registry File"; in handleMessageRoutesMessageRegistryFileGet()
100 dmtf + registry + " Message Registry File Location"; in handleMessageRoutesMessageRegistryFileGet()
112 location["Uri"] = "/redfish/v1/Registries/" + registry + "/" + registry; in handleMessageRoutesMessageRegistryFileGet()
134 const std::string& registry, const std::string& registryMatch) in handleMessageRegistryGet() argument
143 registries::getRegistryFromPrefix(registry); in handleMessageRegistryGet()
[all …]
/openbmc/openbmc/poky/meta/lib/oe/
H A Dclassutils.py10 cls.registry = {}
39 cls.registry[cls.name] = cls
43 return sorted(list(tcls.registry.values()),
47 for key in cls.registry.keys():
48 if cls.registry[key] is cls:
49 del cls.registry[key]
/openbmc/bmcweb/redfish-core/include/
H A Devent_matches_filter.hpp75 std::string registry; in eventMatchesFilter() local
77 getRegistryAndMessageKey(*messageId, registry, messageKey); in eventMatchesFilter()
79 auto obj = std::ranges::find(userSub.registryPrefixes, registry); in eventMatchesFilter()
129 std::string registry; in eventMatchesFilter() local
131 getRegistryAndMessageKey(*messageId, registry, messageKey); in eventMatchesFilter()
133 BMCWEB_LOG_DEBUG("extracted registry {}", registry); in eventMatchesFilter()
137 userSub.registryMsgIds, std::format("{}.{}", registry, messageKey)); in eventMatchesFilter()
141 registry); in eventMatchesFilter()
H A Dregistries.hpp71 RegistryEntry{T::header, T::url, T::registry}); in registerRegistry()
110 const Header& header, std::span<const MessageEntry> registry, size_t index, in getLogFromRegistry() argument
113 const redfish::registries::MessageEntry& entry = registry[index]; in getLogFromRegistry()
149 std::span<const MessageEntry> registry);
/openbmc/qemu/util/
H A Drcu.c72 static ThreadList registry = QLIST_HEAD_INITIALIZER(registry); variable
86 QLIST_FOREACH(index, &registry, node) { in wait_for_readers()
100 QLIST_FOREACH_SAFE(index, &registry, node, tmp) { in wait_for_readers()
114 if (QLIST_EMPTY(&registry)) { in wait_for_readers()
141 QLIST_SWAP(&registry, &qsreaders, node); in wait_for_readers()
157 if (!QLIST_EMPTY(&registry)) { in synchronize_rcu()
377 QLIST_INSERT_HEAD(&registry, get_ptr_rcu_reader(), node); in rcu_register_thread()
460 memset(&registry, 0, sizeof(registry)); in rcu_init_child()
/openbmc/bmcweb/redfish-core/src/
H A Dregistries.cpp46 auto registry = getRegistryFromPrefix(registryName); in getRegistryMessagesFromPrefix() local
47 if (!registry) in getRegistryMessagesFromPrefix()
52 return registry->get().entries; in getRegistryMessagesFromPrefix()
56 std::span<const MessageEntry> registry) in getMessageFromRegistry() argument
59 registry, [&messageKey](const MessageEntry& messageEntry) { in getMessageFromRegistry()
62 if (messageIt != registry.end()) in getMessageFromRegistry()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-core/uutils-coreutils/uutils-coreutils/
H A D0002-Bump-onig-from-6.4.0-to-6.5.1.patch24 source = "registry+https://github.com/rust-lang/crates.io-index"
39 source = "registry+https://github.com/rust-lang/crates.io-index"
69 -source = "registry+https://github.com/rust-lang/crates.io-index"
76 source = "registry+https://github.com/rust-lang/crates.io-index"
90 source = "registry+https://github.com/rust-lang/crates.io-index"
105 source = "registry+https://github.com/rust-lang/crates.io-index"
112 source = "registry+https://github.com/rust-lang/crates.io-index"
121 source = "registry+https://github.com/rust-lang/crates.io-index"
/openbmc/openbmc/meta-ampere/meta-common/recipes-ampere/platform/ampere-utils/
H A Dampere_add_redfishevent.sh3 registry=$1
6 if [ -z "$registry" ]; then
15 echo "logger does not support the journald option. Skip log events for $registry $msgarg"
24 REDFISH_MESSAGE_ID=$registry
/openbmc/openbmc/meta-openembedded/meta-webserver/recipes-webadmin/netdata/netdata/
H A Dnetdata.conf75 registry = @@localstatedir/lib/netdata/registry
176 [registry]
178 netdata unique id file = @@localstatedir/lib/netdata/registry/netdata.public.unique.id
179 registry db file = @@localstatedir/lib/netdata/registry/registry.db
180 registry log file = @@localstatedir/lib/netdata/registry/registry-log.db
/openbmc/openbmc/poky/scripts/lib/recipetool/
H A Dcreate_npm.py36 registry = None
39 nonlocal registry
41 registry = re.sub(r"^npm://", "http://", origvalue.split(";")[0])
46 return registry
88 def _run_npm_install(self, d, srctree, registry, dev): argument
93 if registry:
94 configs.append(("registry", registry))
207 registry = self._get_registry(lines_before)
238 self._run_npm_install(d, srctree, registry, dev)
/openbmc/phosphor-logging/extensions/openpower-pels/registry/
H A Drun-ci.sh2 /usr/bin/env python3 extensions/openpower-pels/registry/tools/validate_registry.py \
3 -s extensions/openpower-pels/registry/schema/schema.json \
4 -r extensions/openpower-pels/registry/message_registry.json
/openbmc/bmcweb/redfish-core/include/registries/
H A Dopenbmc_message_registry.readmefirst.md3 Please read this before making edits to the openbmc base registry.
5 Messages in this registry are intended to be generally useful across OpenBMC
24 4. Message registry versioning semantics shall be obeyed. Adding new messages
32 industry that has modified this registry, it can be differentiated from the
33 OpenBMC project maintained registry.
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/python3-pydantic-core/
H A D0001-cargo.toml-Update-bitvec-to-use-radium-1.x.patch27 @@ -43,7 +43,7 @@ source = "registry+https://github.com/ru
44 @@ -538,6 +539,15 @@ source = "registry+https://github.com/ru
50 +source = "registry+https://github.com/rust-lang/crates.io-index"
59 source = "registry+https://github.com/rust-lang/crates.io-index"
/openbmc/openbmc/meta-phosphor/recipes-phosphor/dbus/
H A Dphosphor-dbus-interfaces_git.bb27 # Create separate packages for Redfish registry.
28 PACKAGES:append = " ${PN}-redfish-registry"
29 FILES:${PN}-redfish-registry += "${datadir}/redfish-registry/${BPN}"
/openbmc/phosphor-logging/extensions/openpower-pels/
H A Dmeson.build54 'registry.cpp',
110 'registry/message_registry.json',
111 'registry/O_component_ids.json',
112 'registry/B_component_ids.json',
/openbmc/linux/drivers/power/supply/
H A Dsurface_charger.c47 struct ssam_event_registry registry; member
175 struct ssam_event_registry registry, const char *name) in spwr_ac_init() argument
184 ac->notif.event.reg = registry; in spwr_ac_init()
244 spwr_ac_init(ac, sdev, p->registry, p->name); in surface_ac_probe()
259 .registry = SSAM_EVENT_REGISTRY_SAM,
/openbmc/entity-manager/scripts/
H A Dvalidate_configs.py215 registry = referencing.Registry()
234 registry = registry.with_resource(
248 root_schema, registry=registry
/openbmc/openbmc/poky/meta/recipes-multimedia/gstreamer/gstreamer1.0/
H A D0004-tests-add-helper-script-to-run-the-installed_tests.patch30 + # we use the home folder ~ for the registry which will then expand at runtime.
31 + # Using the /tmp/gstreamer-1.0/@0@.registry can be problematic as it mostly
32 + # is mounted using tmpfs and if the machine crash from some reason we can lost the registry
34 + env += {'GST_REGISTRY': '~/.cache/gstreamer-1.0/@0@.registry'.format(test_name)}
/openbmc/phosphor-dbus-interfaces/registry/
H A Dmeson.build2 'registry',
4 output: 'registry.log',

1234567