Home
last modified time | relevance | path

Searched refs:timer_new (Results 1 – 3 of 3) sorted by relevance

/openbmc/qemu/include/qemu/
H A Dtimer.h525 * timer_new:
539 static inline QEMUTimer *timer_new(QEMUClockType type, int scale, in timer_new() function
562 return timer_new(type, SCALE_NS, cb, opaque); in timer_new_ns()
582 return timer_new(type, SCALE_US, cb, opaque); in timer_new_us()
602 return timer_new(type, SCALE_MS, cb, opaque); in timer_new_ms()
/openbmc/qemu/target/arm/
H A Dcpu.c1709 cpu->gt_timer[GTIMER_PHYS] = timer_new(QEMU_CLOCK_VIRTUAL, scale, in arm_cpu_propagate_feature_implications()
1711 cpu->gt_timer[GTIMER_VIRT] = timer_new(QEMU_CLOCK_VIRTUAL, scale, in arm_cpu_propagate_feature_implications()
1713 cpu->gt_timer[GTIMER_HYP] = timer_new(QEMU_CLOCK_VIRTUAL, scale, in arm_cpu_propagate_feature_implications()
1715 cpu->gt_timer[GTIMER_SEC] = timer_new(QEMU_CLOCK_VIRTUAL, scale, in arm_cpu_propagate_feature_implications()
1717 cpu->gt_timer[GTIMER_HYPVIRT] = timer_new(QEMU_CLOCK_VIRTUAL, scale, in arm_cpu_propagate_feature_implications()
1719 cpu->gt_timer[GTIMER_S_EL2_PHYS] = timer_new(QEMU_CLOCK_VIRTUAL, scale, in arm_cpu_propagate_feature_implications()
1721 cpu->gt_timer[GTIMER_S_EL2_VIRT] = timer_new(QEMU_CLOCK_VIRTUAL, scale, in arm_cpu_propagate_feature_implications()
/openbmc/qemu/net/
H A Dslirp.c297 .timer_new = net_slirp_timer_new,