Home | History | Annotate | Download | only in hw

Lines Matching full:opaque

42 static void  goldfish_tty_save(QEMUFile*  f, void*  opaque)
44 struct tty_state* s = opaque;
53 static int goldfish_tty_load(QEMUFile* f, void* opaque, int version_id)
55 struct tty_state* s = opaque;
69 static uint32_t goldfish_tty_read(void *opaque, target_phys_addr_t offset)
71 struct tty_state *s = (struct tty_state *)opaque;
84 static void goldfish_tty_write(void *opaque, target_phys_addr_t offset, uint32_t value)
86 struct tty_state *s = (struct tty_state *)opaque;
168 static int tty_can_receive(void *opaque)
170 struct tty_state *s = opaque;
175 static void tty_receive(void *opaque, const uint8_t *buf, int size)
177 struct tty_state *s = opaque;