Lines Matching full:opaque
39 static void goldfish_timer_save(QEMUFile* f, void* opaque)
41 struct timer_state* s = opaque;
52 static int goldfish_timer_load(QEMUFile* f, void* opaque, int version_id)
54 struct timer_state* s = opaque;
76 static uint32_t goldfish_timer_read(void *opaque, target_phys_addr_t offset)
78 struct timer_state *s = (struct timer_state *)opaque;
91 static void goldfish_timer_write(void *opaque, target_phys_addr_t offset, uint32_t value_ns)
93 struct timer_state *s = (struct timer_state *)opaque;
122 static void goldfish_timer_tick(void *opaque)
124 struct timer_state *s = (struct timer_state *)opaque;
141 static void goldfish_rtc_save(QEMUFile* f, void* opaque)
143 struct rtc_state* s = opaque;
148 static int goldfish_rtc_load(QEMUFile* f, void* opaque, int version_id)
150 struct rtc_state* s = opaque;
160 static uint32_t goldfish_rtc_read(void *opaque, target_phys_addr_t offset)
162 struct rtc_state *s = (struct rtc_state *)opaque;
175 static void goldfish_rtc_write(void *opaque, target_phys_addr_t offset, uint32_t value)
177 struct rtc_state *s = (struct rtc_state *)opaque;