Home
last modified time | relevance | path

Searched refs:statistics (Results 1 – 25 of 122) sorted by relevance

12345

/openbmc/qemu/qapi/
H A Dstats.json20 # Enumeration of statistics types
42 # Enumeration of unit of measurement for statistics
60 # Enumeration of statistics providers.
74 # The kinds of objects on which one can request statistics.
76 # @vm: statistics that apply to the entire virtual machine or the
79 # @vcpu: statistics that apply to a single virtual CPU.
81 # @cryptodev: statistics that apply to a crypto device (since 8.0)
91 # Indicates a set of statistics that should be returned by
94 # @provider: provider for which to return statistics.
96 # @names: statistics to be returned (all if omitted).
[all …]
H A Daccelerator.json44 # Query accelerator statistics
50 # Returns: accelerator statistics
/openbmc/bmcweb/test/redfish-core/include/utils/
H A Dsensor_utils_test.cpp123 Statistics statistics = std::make_tuple(1234567890, metrics); in TEST() local
130 updateSensorStatistics(sensorJson, statistics, readingParams); in TEST()
140 Statistics statistics = std::make_tuple(1234567890, metrics); in TEST() local
147 updateSensorStatistics(sensorJson, statistics, readingParams); in TEST()
159 Statistics statistics = std::make_tuple(1234567890, metrics); in TEST() local
166 updateSensorStatistics(sensorJson, statistics, readingParams); in TEST()
175 std::optional<Statistics> statistics = std::nullopt; in TEST() local
178 updateSensorStatistics(sensorJson, statistics, readingParams); in TEST()
/openbmc/qemu/tests/tcg/plugins/
H A Dsyscall.c71 static GHashTable *statistics; variable
79 (SyscallStats *) g_hash_table_lookup(statistics, &num); in get_or_create_entry()
84 g_hash_table_insert(statistics, &entry->num, entry); in get_or_create_entry()
133 if (statistics) { in vcpu_syscall()
156 if (statistics) { in vcpu_syscall_ret()
194 if (!statistics) { in plugin_exit()
199 GList *entries = g_hash_table_get_values(statistics); in plugin_exit()
206 g_hash_table_destroy(statistics); in plugin_exit()
235 statistics = g_hash_table_new_full(g_int64_hash, g_int64_equal, NULL, g_free); in qemu_plugin_install()
/openbmc/qemu/hw/net/
H A Deepro100.c269 eepro100_stats_t statistics; member
549 assert(s->stats_size > 0 && s->stats_size <= sizeof(s->statistics)); in e100_pci_reset()
710 pci_dma_write(&s->dev, s->statsaddr, &s->statistics, s->stats_size); in dump_statistics()
712 s->statistics.tx_good_frames, attrs); in dump_statistics()
714 s->statistics.rx_good_frames, attrs); in dump_statistics()
716 s->statistics.rx_resource_errors, attrs); in dump_statistics()
718 s->statistics.rx_short_frame_errors, attrs); in dump_statistics()
721 s->statistics.xmt_tco_frames, attrs); in dump_statistics()
723 s->statistics.rcv_tco_frames, attrs); in dump_statistics()
815 s->statistics.tx_good_frames++; in tx_command()
[all …]
/openbmc/qemu/scripts/simplebench/
H A Dsimplebench.py21 import statistics
94 result['average'] = statistics.mean(r[dim] for r in succeeded)
98 result['stdev'] = statistics.stdev(r[dim] for r in succeeded)
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/iptraf/
H A Diptraf-ng_1.2.1.bb6 data like TCP connection packet and byte counts, interface statistics \
11 interface statistics showing IP, TCP, UDP, ICMP, non-IP and other IP \ type
15 statistics module that discovers active hosts and displays statistics \
/openbmc/qemu/docs/interop/
H A Dvirtio-balloon-stats.rst1 Virtio balloon memory statistics
4 The virtio balloon driver supports guest memory statistics reporting. These
5 statistics are available to QEMU users as QOM (QEMU Object Model) device
17 disables polling. Previous polled statistics are still valid and
49 - Previously polled statistics remain available even if the polling is
62 statistics request. This means that if a (buggy) guest doesn't ever
/openbmc/openbmc/poky/bitbake/bin/
H A Dbitbake-hashclient19 import statistics
123 mean = statistics.mean(times)
124 median = statistics.median(times)
125 stddev = statistics.pstdev(times)
276 mean = statistics.mean(times)
277 median = statistics.median(times)
278 std_dev = statistics.pstdev(times)
/openbmc/u-boot/doc/
H A DREADME.t1040-l2switch28 - port statistics
38 ethsw [port <port_no>] statistics { [help] | [clear] } - show an l2 switch port's statistics
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/
H A Dpython3-pytest-codspeed_3.0.0.bb14 RDEPENDS:${PN} = "python3-cffi python3-filelock python3-pytest python3-rich python3-statistics"
H A Dpython3-propcache_0.3.1.bb19 python3-statistics \
H A Dpython3-pint_0.24.4.bb33 python3-statistics \
H A Dpython3-fastjsonschema_2.21.1.bb21 python3-statistics \
H A Dpython3-pyperf_2.9.0.bb22 RDEPENDS:${PN} += "python3-misc python3-statistics"
/openbmc/openbmc/poky/meta/recipes-devtools/python/
H A Dpython3-more-itertools_10.6.0.bb15 python3-statistics \
H A Dpython3-hypothesis_6.131.14.bb25 python3-statistics \
/openbmc/openbmc/poky/meta/recipes-graphics/xrestop/
H A Dxrestop_0.4.bb3 DESCRIPTION = "top-like statistics of X11 server resource usage by clients"
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/linux-atm/linux-atm/
H A D0001-fix-compile-error-with-linux-kernel-v4.8.patch35 + /* get pool statistics */
37 + /* get statistics and zero */
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/nicstat/
H A Dnicstat_1.95.bb2 statistics for all network interface cards (NICs), including packets, kilobytes \
/openbmc/openbmc/poky/meta/recipes-devtools/diffstat/
H A Ddiffstat_1.68.bb1 SUMMARY = "Tool to produce a statistics based on a diff"
/openbmc/openbmc/meta-phosphor/recipes-phosphor/health/
H A Dphosphor-health-monitor_git.bb2 DESCRIPTION = "Daemon to collect and monitor bmc health statistics"
/openbmc/bmcweb/redfish-core/include/utils/
H A Dsensor_utils.hpp306 nlohmann::json& sensorJson, const std::optional<Statistics>& statistics, in updateSensorStatistics() argument
309 if (statistics.has_value() && readingParameters.has_value()) in updateSensorStatistics()
311 Readings metrics = std::get<1>(*statistics); in updateSensorStatistics()
565 std::optional<Statistics> statistics; in fillSensorIdentity() local
570 readingBasis, "Implementation", implementation, "Readings", statistics, in fillSensorIdentity()
597 updateSensorStatistics(sensorJson, statistics, readingParameters); in fillSensorIdentity()
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/wavemon/
H A Dwavemon_0.9.6.bb5 statistics, device configuration and network parameters of \
/openbmc/openbmc/meta-phosphor/recipes-phosphor/ipmi/
H A Dphosphor-ipmi-ethstats_git.bb2 …RIPTION = "This package handles receiving OEM IPMI commands to provide ethernet device statistics."

12345