Home
last modified time | relevance | path

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

/qemu/include/qemu/
H A Dtimer.h541 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()
580 return timer_new(type, SCALE_US, cb, opaque); in timer_new_us()
598 return timer_new(type, SCALE_MS, cb, opaque); in timer_new_ms()
/qemu/target/arm/
H A Dcpu.c2062 cpu->gt_timer[GTIMER_PHYS] = timer_new(QEMU_CLOCK_VIRTUAL, scale, in arm_cpu_realizefn()
2064 cpu->gt_timer[GTIMER_VIRT] = timer_new(QEMU_CLOCK_VIRTUAL, scale, in arm_cpu_realizefn()
2066 cpu->gt_timer[GTIMER_HYP] = timer_new(QEMU_CLOCK_VIRTUAL, scale, in arm_cpu_realizefn()
2068 cpu->gt_timer[GTIMER_SEC] = timer_new(QEMU_CLOCK_VIRTUAL, scale, in arm_cpu_realizefn()
2070 cpu->gt_timer[GTIMER_HYPVIRT] = timer_new(QEMU_CLOCK_VIRTUAL, scale, in arm_cpu_realizefn()
/qemu/net/
H A Dslirp.c285 .timer_new = net_slirp_timer_new,