Home
last modified time | relevance | path

Searched full:updates (Results 1 – 25 of 2310) sorted by relevance

12345678910>>...93

/openbmc/telemetry/tests/src/
H A Dtest_numeric_threshold.cpp114 NumericParams& Updates(std::vector<UpdateParams> val) in Updates() function
116 updates = std::move(val); in Updates()
156 *os << " ], Updates: [ "; in PrintTo()
157 for (const auto& [index, value, sleepAfter] : o.updates) in PrintTo()
174 std::vector<UpdateParams> updates; member
223 for (const auto& [index, value, sleepAfter] : GetParam().updates) in testBodySensorIsUpdatedMultipleTimes()
262 .Updates({{0, 89.0}})
268 .Updates({{0, 91.0}})
274 .Updates({{0, 99.0}, {0, 80.0}, {0, 98.0}})
280 .Updates({{0, 99.0}, {1, 98.0}})
[all …]
H A Dtest_on_change_threshold.cpp85 OnChangeParams& Updates(std::vector<UpdateParams> val) in Updates() function
87 updates = std::move(val); in Updates()
99 *os << "{ Updates: [ "; in PrintTo()
100 for (const auto& [index, value] : o.updates) in PrintTo()
112 std::vector<UpdateParams> updates; member
123 Values(OnChangeParams().Updates({{0, 80.0}}).Expected({{0, 80.0}}),
125 .Updates({{0, 80.0}, {1, 81.0}})
128 .Updates({{0, 80.0}, {0, 90.0}})
131 .Updates({{0, 80.0}, {1, 90.0}, {0, 90.0}})
134 .Updates({{0, 80.0}, {1, 80.0}, {1, 90.0}, {0, 90.0}})
[all …]
H A Dtest_discrete_threshold.cpp154 DiscreteParams& Updates(std::vector<UpdateParams> val) in Updates() function
156 updates = std::move(val); in Updates()
182 *os << ", Updates: [ "; in PrintTo()
183 for (const auto& [index, value, sleepAfter] : o.updates) in PrintTo()
197 std::vector<UpdateParams> updates; member
241 for (const auto& [index, value, sleepAfter] : GetParam().updates) in testBodySensorIsUpdatedMultipleTimes()
274 .Updates({{0, 80.0}, {0, 89.0}})
278 .Updates({{0, 80.0}, {0, 90.0}, {0, 80.0}, {0, 90.0}})
282 .Updates({{0, 90.0}, {0, 99.0}, {1, 100.0}, {1, 90.0}})
310 .Updates({{0, 90.0, 100ms}, {0, 91.0}, {0, 90.0}})
[all …]
/openbmc/linux/include/linux/atomic/
H A Datomic-instrumented.h95 * Atomically updates @v to (@v + @i) with relaxed ordering.
113 * Atomically updates @v to (@v + @i) with full ordering.
132 * Atomically updates @v to (@v + @i) with acquire ordering.
150 * Atomically updates @v to (@v + @i) with release ordering.
169 * Atomically updates @v to (@v + @i) with relaxed ordering.
187 * Atomically updates @v to (@v + @i) with full ordering.
206 * Atomically updates @v to (@v + @i) with acquire ordering.
224 * Atomically updates @v to (@v + @i) with release ordering.
243 * Atomically updates @v to (@v + @i) with relaxed ordering.
261 * Atomically updates @v to (@v - @i) with relaxed ordering.
[all …]
H A Datomic-long.h111 * Atomically updates @v to (@v + @i) with relaxed ordering.
132 * Atomically updates @v to (@v + @i) with full ordering.
153 * Atomically updates @v to (@v + @i) with acquire ordering.
174 * Atomically updates @v to (@v + @i) with release ordering.
195 * Atomically updates @v to (@v + @i) with relaxed ordering.
216 * Atomically updates @v to (@v + @i) with full ordering.
237 * Atomically updates @v to (@v + @i) with acquire ordering.
258 * Atomically updates @v to (@v + @i) with release ordering.
279 * Atomically updates @v to (@v + @i) with relaxed ordering.
300 * Atomically updates @v to (@v - @i) with relaxed ordering.
[all …]
H A Datomic-arch-fallback.h524 * Atomically updates @v to (@v + @i) with relaxed ordering.
541 * Atomically updates @v to (@v + @i) with full ordering.
568 * Atomically updates @v to (@v + @i) with acquire ordering.
595 * Atomically updates @v to (@v + @i) with release ordering.
621 * Atomically updates @v to (@v + @i) with relaxed ordering.
644 * Atomically updates @v to (@v + @i) with full ordering.
671 * Atomically updates @v to (@v + @i) with acquire ordering.
698 * Atomically updates @v to (@v + @i) with release ordering.
724 * Atomically updates @v to (@v + @i) with relaxed ordering.
747 * Atomically updates @v to (@v - @i) with relaxed ordering.
[all …]
/openbmc/u-boot/arch/x86/include/asm/
H A Dmicrocode.h16 * microcode_update_intel() - Apply microcode updates
18 * Applies any microcode updates in the device tree.
20 * @return 0 if OK, -EEXIST if the updates were already applied, -ENOENT if
21 * not updates were found, -EINVAL if an update was invalid
/openbmc/linux/fs/xfs/
H A Dxfs_rmap_item.h17 * that records the associated rmapbt updates. Typically, the first
19 * transactions containing rmapbt updates, and finally transactions with any
20 * bnobt/cntbt updates.
25 * (rmapbt/bnobt/cntbt) metadata updates in the non-first transaction.
63 * some rmapbt updates mentioned in an earlier rui item have been performed.
H A Dxfs_refcount_item.h17 * transaction that records the associated refcountbt updates.
22 * to replay the refcountbt metadata updates.
62 * fact that some refcountbt updates mentioned in an earlier cui item
H A Dxfs_bmap_item.h17 * that records the associated bmbt updates.
22 * bmbt metadata updates in the non-first transaction.
60 * some bmbt updates mentioned in an earlier bui item have been performed.
/openbmc/linux/Documentation/RCU/
H A Dchecklist.rst32 for lockless updates. This does result in the mildly
34 rcu_read_unlock() are used to protect updates, however, this
45 c. restricting updates to a single task.
87 be running while updates are in progress. There are a number
106 c. Make updates appear atomic to readers. For example,
107 pointer updates to properly aligned fields will
118 d. Carefully order the updates and the reads so that readers
190 e. Updates must ensure that initialization of a given
222 Restructure your code so that it batches the updates, allowing
280 primitive will correspondingly delay updates. In contrast,
[all …]
/openbmc/openbmc/meta-google/recipes-google/systemd/
H A Dgbmc-systemd-config.bb12 file://firmware-updates.target \
13 file://firmware-updates-pre.target \
35 firmware-updates.target \
36 firmware-updates-pre.target \
51 install -m 0644 ${UNPACKDIR}/firmware-updates.target ${D}${systemd_system_unitdir}/
52 install -m 0644 ${UNPACKDIR}/firmware-updates-pre.target ${D}${systemd_system_unitdir}/
/openbmc/qemu/tests/
H A Dtest-qht-par.c48 g_test_add_func("/qht/parallel/2threads-0%updates-1s", test_2th0u1s); in main()
49 g_test_add_func("/qht/parallel/2threads-20%updates-1s", test_2th20u1s); in main()
51 g_test_add_func("/qht/parallel/2threads-0%updates-5s", test_2th0u5s); in main()
52 g_test_add_func("/qht/parallel/2threads-20%updates-5s", test_2th20u5s); in main()
/openbmc/openbmc/poky/meta/lib/oe/
H A Ddistro_check.py81 …letter("http://archive.fedoraproject.org/pub/fedora/linux/updates/%s/SRPMS/" % latest, "updates", …
89 …ackage_list_from_url("http://download.opensuse.org/update/leap/%s/oss/src/" % latest, "updates", d)
125 url = "http://ftp.debian.org/debian/dists/stable-proposed-updates/main/source/Sources.gz"
126 package_names |= get_debian_style_source_package_list(url, "updates", d)
134 updates, so the resulting distro could be any supported release.
138 if "-updates" in link:
139 distro = link.replace("-updates", "")
148 url = "http://archive.ubuntu.com/ubuntu/dists/%s-updates/main/source/Sources.gz" % latest
149 package_names |= get_debian_style_source_package_list(url, "updates", d)
/openbmc/openbmc/meta-arm/meta-arm-bsp/dynamic-layers/meta-arm-systemready/recipes-test/arm-systemready-acs/files/fvp-base/
H A D0001-check-sr-results-Change-the-expected-SR-result-confi.patch18 Capsule updates are not supported.
26 a. capsuleapp-esrt: Capsule updates are not supported.
30 c. must-contain "FwClass": Capsule updates are not supported.
31 d. error-if-contains "ESRT - Not Found": Capsule updates are not
34 a. warn-if-contains "Aborted test": Capsule updates are not supported.
38 a. Remove whole directory because capsule updates are not supported.
48 b. must-contain "FirmwareManagement": Capsule updates are not supported.
52 a. Make optional because capsule updates are not supported.
/openbmc/u-boot/test/py/tests/
H A Dtest_tpm2.py23 updates = 0 variable
192 # Save the number of PCR updates
193 str = re.findall(r'\d+ known updates', read_pcr)[0]
194 global updates
195 updates = int(re.findall(r'\d+', str)[0])
225 str = re.findall(r'\d+ known updates', read_pcr)[0]
227 assert (updates + 1) == new_updates
/openbmc/docs/designs/
H A Dexternal-sensor.md41 _ExternalSensor_ to detect and properly indicate loss of timely sensor updates
74 from other sensor daemons. Once an external source starts providing updates, the
75 external source is expected to continue to provide timely updates. Each update
103 Periodic things like sensors, which send out regular updates, could easily lead
141 timeout value, in seconds. If this amount of time elapses with no new updates
185 IPMI sensors, however, expected usage of almost all external sensor updates is a
190 _ExternalSensor_ are expected to receive continuous periodic updates from an
193 not dependent on IPMI as the only source of external updates.
199 dropped updates that duplicated the existing sensor value. For use with
200 _ExternalSensor_, we want to recognize all updates received, even duplicates, as
/openbmc/openbmc/poky/bitbake/lib/progressbar/
H A Dwidgets.py59 """Updates the widget.
75 """Updates the widget providing the total width the widget must fill.
99 """Updates the widget to show the elapsed time."""
110 """Updates the widget to show the ETA or total time when finished."""
149 """Updates the widget to show the ETA or total time when finished."""
178 """Updates the widget with the current SI prefixed speed."""
202 """Updates the widget to show the next marker or the first marker when
300 """Updates the progress bar and its subcomponents."""
340 """Updates the progress bar and its subcomponents."""
/openbmc/qemu/tests/qemu-iotests/
H A D082.out69 lazy_refcounts=<bool (on/off)> - Postpone refcount updates
95 lazy_refcounts=<bool (on/off)> - Postpone refcount updates
121 lazy_refcounts=<bool (on/off)> - Postpone refcount updates
147 lazy_refcounts=<bool (on/off)> - Postpone refcount updates
173 lazy_refcounts=<bool (on/off)> - Postpone refcount updates
199 lazy_refcounts=<bool (on/off)> - Postpone refcount updates
225 lazy_refcounts=<bool (on/off)> - Postpone refcount updates
251 lazy_refcounts=<bool (on/off)> - Postpone refcount updates
291 lazy_refcounts=<bool (on/off)> - Postpone refcount updates
379 lazy_refcounts=<bool (on/off)> - Postpone refcount updates
[all …]
/openbmc/bmcweb/redfish-core/schema/dmtf/json-schema/
H A DUpdateService.v1_15_0.json175 "description": "The settings for `HttpPushUri`-provided software updates.",
176 …all contain settings and requirements of the service for `HttpPushUri`-provided software updates.",
264 "description": "This action updates software components.",
553 …ted in favor of the update parameters used with `MultipartHttpPushUri`-provided software updates.",
554 "description": "The options for `HttpPushUri`-provided software updates.",
555 …hall contain options and requirements of the service for `HttpPushUri`-provided software updates.",
560 … "This property has been deprecated in favor of `MultipartHttpPushUri`-provided software updates.",
561 …cation of whether a client has reserved the `HttpPushUriOptions` properties for software updates.",
562updates. When a client uses any `HttpPushUriOptions` properties for software updates, it should s…
572 …ted in favor of the update parameters used with `MultipartHttpPushUri`-provided software updates.",
[all …]
/openbmc/bmcweb/redfish-core/schema/dmtf/json-schema-installed/
H A DUpdateService.v1_15_0.json175 "description": "The settings for `HttpPushUri`-provided software updates.",
176 …all contain settings and requirements of the service for `HttpPushUri`-provided software updates.",
264 "description": "This action updates software components.",
553 …ted in favor of the update parameters used with `MultipartHttpPushUri`-provided software updates.",
554 "description": "The options for `HttpPushUri`-provided software updates.",
555 …hall contain options and requirements of the service for `HttpPushUri`-provided software updates.",
560 … "This property has been deprecated in favor of `MultipartHttpPushUri`-provided software updates.",
561 …cation of whether a client has reserved the `HttpPushUriOptions` properties for software updates.",
562updates. When a client uses any `HttpPushUriOptions` properties for software updates, it should s…
572 …ted in favor of the update parameters used with `MultipartHttpPushUri`-provided software updates.",
[all …]
/openbmc/u-boot/doc/
H A DREADME.update7 This feature allows to automatically store software updates present on a TFTP
11 updates. Each update in the update file has an address in NOR Flash where it
12 should be placed, updates are also protected with a SHA-1 checksum. If the
93 An example containing three updates. It can be used to update Linux kernel,
/openbmc/docs/designs/oem/ibm/
H A Dsystem-power-mode.md33 the OCC state changes to ACTIVE or the customer updates these new parameters at
66 - Customer updates system power mode user interface or Redfish interface
67 - Customer updates idle power save setting or Redfish interface
87 will be retained across power cycles, AC loss, code updates, etc.
/openbmc/openbmc/meta-google/recipes-google/systemd/files/
H A Dfirmware-updates.target2 Description=Firmware Updates and Configuration
3 Wants=firmware-updates-pre.target
/openbmc/linux/drivers/net/ethernet/intel/fm10k/
H A Dfm10k_common.c299 * fm10k_update_hw_base_48b - Updates 48-bit statistic base value
320 * fm10k_update_hw_stats_tx_q - Updates TX queue statistics counters
325 * Function updates the TX queue statistics counters that are related to the
371 * fm10k_update_hw_stats_rx_q - Updates RX queue statistics counters
376 * Function updates the RX queue statistics counters that are related to the
427 * fm10k_update_hw_stats_q - Updates queue statistics counters
433 * Function updates the queue statistics counters that are related to the
453 * Function invalidates the index values for the queues so any updates that

12345678910>>...93