/openbmc/linux/drivers/infiniband/hw/usnic/ |
D | usnic_uiom_interval_tree.c |
|
/openbmc/linux/drivers/atm/ |
D | idt77252_tables.h |
|
/openbmc/linux/drivers/net/ethernet/engleder/ |
D | tsnep_selftests.c |
|
D | tsnep_tc.c |
|
/openbmc/sdeventplus/src/sdeventplus/utility/ |
H A D | timer.hpp | 26 * at specified intervals. If no interval is provided to the timer, 39 * interval or time remaining. 49 * This timer is created enabled by default if passed an interval. 54 * @param[in] interval - Optional amount of time in-between timer 55 * expirations. std::nullopt means the interval 62 std::optional<Duration> interval = std::nullopt, 119 /** @brief Gets interval between timer expirations 120 * The timer may not have a configured interval and is instead 123 * @return The interval as an std::chrono::duration 145 * This does not affect the interval used for subsequent runs. [all …]
|
H A D | timer.cpp | 16 std::optional<Duration> interval, in Timer() argument 20 Clock<Id>(event).now() + interval.value_or(Duration::zero()), in Timer() 24 *this, std::move(callback), interval); in Timer() 32 setEnabled(interval.has_value()); in Timer() 80 return userdata->interval; in getInterval() 121 setRemaining(userdata->interval.value()); in resetRemaining() 125 void Timer<Id>::setInterval(std::optional<Duration> interval) in setInterval() argument 127 userdata->interval = interval; in setInterval() 137 void Timer<Id>::restart(std::optional<Duration> interval) in restart() argument 141 setInterval(interval); in restart() [all …]
|
/openbmc/phosphor-watchdog/test/ |
H A D | watchdog.cpp | 42 wdog->interval(milliseconds(defaultInterval).count()); in WdogTest() 56 // This is the default interval as given in Interface definition 101 EXPECT_EQ(newIntervalMs, wdog->interval(newIntervalMs)); in TEST_F() 104 EXPECT_EQ(newIntervalMs, wdog->interval()); in TEST_F() 125 // Get the configured interval in TEST_F() 206 /** @brief Make sure the Interval can be updated directly. 212 EXPECT_EQ(expireTimeMs, wdog->interval(expireTimeMs)); in TEST_F() 214 // Expect an update in the Interval in TEST_F() 215 EXPECT_EQ(expireTimeMs, wdog->interval()); in TEST_F() 218 /** @brief Make sure the Interval can be updated while the timer is running. [all …]
|
/openbmc/linux/drivers/block/drbd/ |
D | drbd_interval.c |
|
/openbmc/linux/tools/perf/scripts/python/ |
D | sctop.py |
|
/openbmc/qemu/net/ |
H A D | filter-buffer.c | 27 uint32_t interval; member 53 /* Timer rearmed to fire again in s->interval microseconds. */ in filter_buffer_release_timer() 55 qemu_clock_get_us(QEMU_CLOCK_VIRTUAL) + s->interval); in filter_buffer_release_timer() 91 if (s->interval) { in filter_buffer_cleanup() 106 if (s->interval) { in filter_buffer_setup_timer() 109 /* Timer armed to fire in s->interval microseconds. */ in filter_buffer_setup_timer() 111 qemu_clock_get_us(QEMU_CLOCK_VIRTUAL) + s->interval); in filter_buffer_setup_timer() 120 * We may want to accept zero interval when VM FT solutions like MC in filter_buffer_setup() 123 if (!s->interval) { in filter_buffer_setup() 124 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "interval", in filter_buffer_setup() [all …]
|
/openbmc/phosphor-power/power-sequencer/ |
H A D | main.cpp | 35 std::string interVal{}; in main() local 42 app.add_option("-i,--interval", interVal, in main() 43 "Interval in milliseconds:\n" in main() 45 "Runtime monitor: polling interval.\n") in main() 57 auto i = strtoul(interVal.c_str(), nullptr, 10); in main() 60 std::cerr << "Invalid interval value\n"; in main() 64 std::chrono::milliseconds interval{i}; in main() local 79 interval); in main() 86 event, interval); in main()
|
/openbmc/linux/Documentation/userspace-api/media/v4l/ |
D | vidioc-enum-frameintervals.rst |
|
/openbmc/phosphor-watchdog/src/ |
H A D | watchdog.hpp | 53 uint64_t interval; member 65 * @param[in] defaultInterval - default interval to start with 84 interval(defaultInterval); 88 interval(interval()); 95 /** @brief Resets the TimeRemaining to the configured Interval 111 * interval and it starts counting down. 138 /** @brief Get value of Interval 141 * @return: current interval 144 using WatchdogInherits::interval; 146 /** @brief Set value of Interval [all …]
|
/openbmc/linux/tools/testing/selftests/timers/ |
D | set-timer-lat.c |
|
/openbmc/linux/Documentation/admin-guide/device-mapper/ |
D | dm-flakey.rst |
|
/openbmc/phosphor-fan-presence/control/json/triggers/ |
H A D | timer.cpp | 60 if (!jsonObj.contains("interval")) in getInterval() 62 lg2::error("Missing required timer trigger interval", "JSON", in getInterval() 64 throw std::runtime_error("Missing required timer trigger interval"); in getInterval() 67 jsonObj["interval"].get<uint64_t>()); in getInterval() 84 // Get the type and interval of this timer from the JSON in triggerTimer() 86 auto interval = getInterval(jsonObj); in triggerTimer() local 89 return [type = std::move(type), interval = std::move(interval), in triggerTimer() 96 mgr->addTimer(type, interval, std::move(tpPtr)); in triggerTimer()
|
/openbmc/telemetry/src/ |
H A D | report_manager.cpp | 52 uint64_t interval, ReadingParameters readingParameters, in ReportManager() 71 if (interval == std::numeric_limits<uint64_t>::max()) in ReportManager() 73 interval = 0; in ReportManager() 84 Milliseconds(interval), appendLimit, in ReportManager() 102 const ReportingType reportingType, Milliseconds interval, in verifyAddReport() argument 121 if ((reportingType == ReportingType::periodic && interval < minInterval) || in verifyAddReport() 123 interval != Milliseconds{0})) in verifyAddReport() 125 throw errors::InvalidArgument("Interval"); in verifyAddReport() 140 const std::vector<ReportAction>& reportActions, Milliseconds interval, in addReport() argument 148 interval, appendLimit, reportUpdates, in addReport() [all …]
|
/openbmc/linux/drivers/input/ |
D | input-poller.c |
|
/openbmc/linux/tools/power/x86/turbostat/ |
D | turbostat.8 |
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-bsp/lm_sensors/lmsensors-config/ |
H A D | sensord.conf | 3 # -i, --interval <time> -- interval between scanning alarms (default 60s) 4 # -l, --log-interval <time> -- interval between logging sensors (default 30m) 5 # -t, --rrd-interval <time> -- interval between updating RRD file (default 5m)
|
/openbmc/linux/tools/perf/scripts/python/bin/ |
D | sctop-report |
|
/openbmc/qemu/docs/interop/ |
H A D | virtio-balloon-stats.rst | 9 This is done by writing a time interval value (in seconds) to the 10 guest-stats-polling-interval property. This value can be: 13 enables polling in the specified interval. If polling is already 14 enabled, the polling time interval is changed to the new value 22 interval. 70 Enable polling with 2 seconds interval:: 74 "property": "guest-stats-polling-interval", "value": 2 } } 82 "property": "guest-stats-polling-interval", "value": 10 } } 109 "property": "stats-polling-interval", "value": 0 } }
|
/openbmc/qemu/include/qemu/ |
H A D | interval-tree.h | 3 * Interval trees. 38 uint64_t start; /* Start of interval */ 39 uint64_t last; /* Last location _in_ interval */ 77 * @start, @last: the inclusive interval [start, last]. 80 * that overlap the interval, where "first" is sorted by start. 89 * @start, @last: the inclusive interval [start, last]. 92 * interval; @next is the result of a previous call to
|
/openbmc/linux/include/linux/ |
D | interval_tree.h |
|
/openbmc/linux/tools/testing/selftests/tc-testing/tc-tests/qdiscs/ |
D | codel.json |
|