Home | History | Annotate | Download | only in hw

Lines Matching full:opaque

46 static void  goldfish_tty_save(QEMUFile*  f, void*  opaque)
48 struct tty_state* s = opaque;
57 static int goldfish_tty_load(QEMUFile* f, void* opaque, int version_id)
59 struct tty_state* s = opaque;
73 static uint32_t goldfish_tty_read(void *opaque, target_phys_addr_t offset)
75 struct tty_state *s = (struct tty_state *)opaque;
88 static void goldfish_tty_write(void *opaque, target_phys_addr_t offset, uint32_t value)
90 struct tty_state *s = (struct tty_state *)opaque;
180 static int tty_can_receive(void *opaque)
182 struct tty_state *s = opaque;
187 static void tty_receive(void *opaque, const uint8_t *buf, int size)
189 struct tty_state *s = opaque;