| /qemu/net/ |
| A D | filter-buffer.c | 27 uint32_t interval; member 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() 111 qemu_clock_get_us(QEMU_CLOCK_VIRTUAL) + s->interval); in filter_buffer_setup_timer() 123 if (!s->interval) { in filter_buffer_setup() 138 if (s->interval) { in filter_buffer_status_changed() 152 uint32_t value = s->interval; in filter_buffer_get_interval() 172 s->interval = value; in filter_buffer_set_interval()
|
| /qemu/scripts/ |
| A D | userfaultfd-wrlat.py | 85 interval = 10 variable 89 interval = int(argv[1]) 90 if interval == 0: 115 sleep(interval)
|
| /qemu/docs/interop/ |
| 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 } }
|
| /qemu/hw/timer/ |
| A D | cadence_ttc.c | 135 int64_t interval = (uint64_t)((s->reg_count & COUNTER_CTRL_INT) ? in cadence_timer_run() local 137 next_value = (s->reg_count & COUNTER_CTRL_DEC) ? -1ULL : interval; in cadence_timer_run() 159 int64_t interval = ((s->reg_count & COUNTER_CTRL_INT) ? in cadence_timer_sync() local 176 if (m > interval) { in cadence_timer_sync() 182 is_between(m + interval, s->reg_value, x) || in cadence_timer_sync() 183 is_between(m - interval, s->reg_value, x)) { in cadence_timer_sync() 187 if ((x < 0) || (x >= interval)) { in cadence_timer_sync() 192 x += interval; in cadence_timer_sync() 194 s->reg_value = (uint32_t)(x % interval); in cadence_timer_sync()
|
| A D | allwinner-a10-pit.c | 54 return s->interval[index]; in a10_pit_read() 124 ptimer_set_count(s->timer[index], s->interval[index]); in a10_pit_write() 138 s->interval[index] = value; in a10_pit_write() 140 ptimer_set_limit(s->timer[index], s->interval[index], 1); in a10_pit_write() 207 VMSTATE_UINT32_ARRAY(interval, AwA10PITState, AW_A10_PIT_TIMER_NR), 230 s->interval[i] = 0; in a10_pit_reset()
|
| /qemu/hw/virtio/ |
| A D | virtio-iommu.c | 285 virtio_iommu_notify_unmap(mr, interval->low, interval->high); in virtio_iommu_notify_unmap_cb() 297 virtio_iommu_notify_map(mr, interval->low, interval->high, in virtio_iommu_notify_map_cb() 820 interval = g_malloc0(sizeof(*interval)); in virtio_iommu_map() 823 interval->high = virt_end; in virtio_iommu_map() 827 g_free(interval); in virtio_iommu_map() 871 interval.high = virt_end; in virtio_iommu_unmap() 878 if (interval.low <= current_low && interval.high >= current_high) { in virtio_iommu_unmap() 1154 interval.low = addr; in virtio_iommu_translate() 1155 interval.high = addr + 1; in virtio_iommu_translate() 1332 trace_virtio_iommu_remap(mr->parent_obj.name, interval->low, interval->high, in virtio_iommu_remap() [all …]
|
| /qemu/audio/ |
| A D | trace-events | 30 audio_timer_start(int interval) "interval %d ms" 32 audio_timer_delayed(int interval) "interval %d ms"
|
| /qemu/contrib/plugins/ |
| A D | bbv.c | 29 static uint64_t interval = 100000000; variable 77 vcpu->count -= interval; in vcpu_interval_exec() 125 QEMU_PLUGIN_COND_GE, count_u64(), interval, NULL); in vcpu_tb_trans() 136 interval = g_ascii_strtoull(tokens[1], NULL, 10); in qemu_plugin_install()
|
| /qemu/scripts/ci/ |
| A D | gitlab-pipeline-status | 83 def wait_on_pipeline_success(timeout, interval, argument 109 time.sleep(interval) 170 args.interval,
|
| /qemu/include/hw/xen/interface/io/ |
| A D | usbif.h | 344 uint16_t interval; /* maximum (1024*8) in usb core */ member 351 uint16_t interval; /* maximum (1024*8) in usb core */ member
|
| /qemu/hw/audio/ |
| A D | adlib.c | 135 double interval; in timer_handler() local 146 interval = NANOSECONDS_PER_SECOND * interval_Sec; in timer_handler() 147 exp = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + interval; in timer_handler()
|
| A D | fmopl.c | 790 double interval = st2 ? (double)OPL->T[1]*OPL->TimerBase : 0.0; in OPLWriteReg() local 793 (OPL->TimerHandler)(OPL->TimerParam, 1, interval); in OPLWriteReg() 799 double interval = st1 ? (double)OPL->T[0]*OPL->TimerBase : 0.0; in OPLWriteReg() local 802 (OPL->TimerHandler)(OPL->TimerParam, 0, interval); in OPLWriteReg()
|
| /qemu/ui/ |
| A D | console.c | 84 uint64_t interval = GUI_REFRESH_INTERVAL_IDLE; in gui_update() local 96 if (interval > dcl_interval) { in gui_update() 97 interval = dcl_interval; in gui_update() 100 if (ds->update_interval != interval) { in gui_update() 101 ds->update_interval = interval; in gui_update() 102 trace_console_refresh(interval); in gui_update() 105 timer_mod(ds->gui_timer, ds->last_update + interval); in gui_update() 708 uint64_t interval) in update_displaychangelistener() argument 712 dcl->update_interval = interval; in update_displaychangelistener() 713 if (!ds->refreshing && ds->update_interval > interval) { in update_displaychangelistener() [all …]
|
| /qemu/docs/ |
| A D | qcow2-cache.txt | 135 periodically if needed, using the "cache-clean-interval" option (see below). 210 The parameter "cache-clean-interval" defines an interval (in seconds), 212 interval are removed from memory. Setting this parameter to 0 disables this 217 -drive file=hd.qcow2,cache-clean-interval=900 224 so cache-clean-interval is not supported on other systems.
|
| /qemu/include/hw/timer/ |
| A D | allwinner-a10-pit.h | 59 uint32_t interval[AW_A10_PIT_TIMER_NR]; member
|
| /qemu/hw/rtc/ |
| A D | m48t59.c | 176 uint64_t interval; /* in 1/16 seconds */ in set_up_watchdog() local 182 interval = (1 << (2 * (value & 0x03))) * ((value >> 2) & 0x1F); in set_up_watchdog() 184 ((interval * 1000) >> 4)); in set_up_watchdog()
|
| /qemu/ |
| A D | qemu-img-cmds.hx | 21 …"bench [-c count] [-d depth] [-f fmt] [--flush-interval=flush_interval] [-i aio] [-n] [--no-drain]… 23 .. option:: bench [-c COUNT] [-d DEPTH] [-f FMT] [--flush-interval=FLUSH_INTERVAL] [-i AIO] [-n] [-…
|
| /qemu/include/standard-headers/linux/ |
| A D | input.h | 319 uint16_t interval; member
|
| /qemu/hw/usb/ |
| A D | pcap.c | 64 int32_t interval; /* 48: Only for Interrupt and ISO */ member
|
| A D | hcd-xhci.c | 293 unsigned int interval; member 1118 epctx->interval = 1 << ((ctx[0] >> 16) & 0xff); in xhci_init_epctx() 1731 uint64_t asap = ((mfindex + epctx->interval - 1) & in xhci_calc_intr_kick() 1732 ~(epctx->interval-1)); in xhci_calc_intr_kick() 1733 uint64_t kick = epctx->mfindex_last + epctx->interval; in xhci_calc_intr_kick() 1735 assert(epctx->interval != 0); in xhci_calc_intr_kick() 1743 uint64_t asap = ((mfindex + epctx->interval - 1) & in xhci_calc_iso_kick() 1744 ~(epctx->interval-1)); in xhci_calc_iso_kick() 1746 asap <= epctx->mfindex_last + epctx->interval * 4) { in xhci_calc_iso_kick() 1747 xfer->mfindex_kick = epctx->mfindex_last + epctx->interval; in xhci_calc_iso_kick()
|
| A D | redirect.c | 83 uint8_t interval; member 539 pkts_per_sec = 8000 / dev->endpoint[EP2I(ep)].interval; in usbredir_handle_iso_data() 541 pkts_per_sec = 1000 / dev->endpoint[EP2I(ep)].interval; in usbredir_handle_iso_data() 1799 dev->endpoint[i].interval = ep_info->interval[i]; in usbredir_ep_info() 1829 if (dev->endpoint[i].interval == 0) { in usbredir_ep_info() 2406 VMSTATE_UINT8(interval, struct endp_data),
|
| /qemu/tests/qemu-iotests/ |
| A D | 137.out | 28 qemu-io: Cache clean interval too big
|
| /qemu/qapi/ |
| A D | qom.json | 251 # @expired_scan_cycle: the interval at which colo-compare checks 381 # @interval: a non-zero interval in microseconds. All packets 382 # arriving in the given interval are delayed until the end of the 383 # interval. 389 'data': { 'interval': 'uint32' } }
|
| A D | block-core.json | 863 # defined interval, in nanoseconds. 866 # defined interval, in nanoseconds. 872 # defined interval, in nanoseconds. 875 # defined interval, in nanoseconds. 878 # defined interval, in nanoseconds. 884 # defined interval, in nanoseconds. 887 # defined interval, in nanoseconds. 890 # defined interval, in nanoseconds. 899 # the defined interval. 902 # the defined interval. [all …]
|
| /qemu/util/ |
| A D | meson.build | 65 util_ss.add(files('interval-tree.c'))
|