Home | History | Annotate | Download | only in hw

Lines Matching full:opaque

38 static void  goldfish_timer_save(QEMUFile*  f, void*  opaque)
40 struct timer_state* s = opaque;
51 static int goldfish_timer_load(QEMUFile* f, void* opaque, int version_id)
53 struct timer_state* s = opaque;
75 static uint32_t goldfish_timer_read(void *opaque, target_phys_addr_t offset)
77 struct timer_state *s = (struct timer_state *)opaque;
90 static void goldfish_timer_write(void *opaque, target_phys_addr_t offset, uint32_t value)
92 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;