Home
last modified time | relevance | path

Searched refs:qemu_get_byte (Results 1 – 13 of 13) sorted by relevance

/external/qemu/hw/
Dhw.h74 int qemu_get_byte(QEMUFile *f);
78 return (unsigned int)qemu_get_byte(f); in qemu_get_ubyte()
81 #define qemu_get_sbyte qemu_get_byte
137 *pv = qemu_get_byte(f); in qemu_get_8s()
Dgoldfish_fb.c102 ds_rot = qemu_get_byte(f); in goldfish_fb_load()
117 s->base_valid = qemu_get_byte(f); in goldfish_fb_load()
118 s->need_update = qemu_get_byte(f); in goldfish_fb_load()
119 s->need_int = qemu_get_byte(f); in goldfish_fb_load()
120 s->set_rotation = qemu_get_byte(f); in goldfish_fb_load()
121 s->blank = qemu_get_byte(f); in goldfish_fb_load()
Dgoldfish_switch.c57 s->state_changed = qemu_get_byte(f); in goldfish_switch_load()
58 s->int_enable = qemu_get_byte(f); in goldfish_switch_load()
Darm_gic.c709 s->irq_state[i].enabled = qemu_get_byte(f); in gic_load()
710 s->irq_state[i].pending = qemu_get_byte(f); in gic_load()
711 s->irq_state[i].active = qemu_get_byte(f); in gic_load()
712 s->irq_state[i].level = qemu_get_byte(f); in gic_load()
713 s->irq_state[i].model = qemu_get_byte(f); in gic_load()
714 s->irq_state[i].trigger = qemu_get_byte(f); in gic_load()
Dgoldfish_tty.c63 s->ready = qemu_get_byte(f); in goldfish_tty_load()
64 s->data_count = qemu_get_byte(f); in goldfish_tty_load()
Dgoldfish_pipe.c254 int state = qemu_get_byte(file); in pipe_load()
273 pipe->wanted = qemu_get_byte(file); in pipe_load()
274 pipe->closed = qemu_get_byte(file); in pipe_load()
275 if (qemu_get_byte(file) != 0) { in pipe_load()
Dgoldfish_timer.c60 s->armed = qemu_get_byte(f); in goldfish_timer_load()
Dsmc91c111.c120 s->int_level = qemu_get_byte(f); in smc91c111_load()
121 s->int_mask = qemu_get_byte(f); in smc91c111_load()
/external/qemu/slirp/
Dslirp.c994 tp->t_oobflags = qemu_get_byte(f); in slirp_tcp_load()
995 tp->t_iobc = qemu_get_byte(f); in slirp_tcp_load()
997 tp->snd_scale = qemu_get_byte(f); in slirp_tcp_load()
998 tp->rcv_scale = qemu_get_byte(f); in slirp_tcp_load()
999 tp->request_r_scale = qemu_get_byte(f); in slirp_tcp_load()
1000 tp->requested_s_scale = qemu_get_byte(f); in slirp_tcp_load()
1040 so->so_iptos = qemu_get_byte(f); in slirp_socket_load()
1041 so->so_emu = qemu_get_byte(f); in slirp_socket_load()
1042 so->so_type = qemu_get_byte(f); in slirp_socket_load()
1058 while ((r = qemu_get_byte(f))) { in slirp_state_load()
/external/qemu/
Dsavevm.c557 int qemu_get_byte(QEMUFile *f) in qemu_get_byte() function
676 v = qemu_get_byte(f) << 8; in qemu_get_be16()
677 v |= qemu_get_byte(f); in qemu_get_be16()
684 v = qemu_get_byte(f) << 24; in qemu_get_be32()
685 v |= qemu_get_byte(f) << 16; in qemu_get_be32()
686 v |= qemu_get_byte(f) << 8; in qemu_get_be32()
687 v |= qemu_get_byte(f); in qemu_get_be32()
754 p[0] = qemu_get_byte(f); in qemu_get_struct()
1066 len = qemu_get_byte(f); in qemu_loadvm_state_v2()
1117 while ((section_type = qemu_get_byte(f)) != QEMU_VM_EOF) { in qemu_loadvm_state()
[all …]
Darch_init.c356 len = qemu_get_byte(f); in host_from_stream_offset()
399 len = qemu_get_byte(f); in ram_load()
433 ch = qemu_get_byte(f); in ram_load()
/external/qemu/slirp-android/
Dslirp.c1397 tp->t_oobflags = qemu_get_byte(f); in slirp_tcp_load()
1398 tp->t_iobc = qemu_get_byte(f); in slirp_tcp_load()
1400 tp->snd_scale = qemu_get_byte(f); in slirp_tcp_load()
1401 tp->rcv_scale = qemu_get_byte(f); in slirp_tcp_load()
1402 tp->request_r_scale = qemu_get_byte(f); in slirp_tcp_load()
1403 tp->requested_s_scale = qemu_get_byte(f); in slirp_tcp_load()
1443 so->so_iptos = qemu_get_byte(f); in slirp_socket_load()
1444 so->so_emu = qemu_get_byte(f); in slirp_socket_load()
1445 so->so_type = qemu_get_byte(f); in slirp_socket_load()
1461 while ((r = qemu_get_byte(f))) { in slirp_state_load()
/external/qemu/telephony/
Dandroid_modem.c562 int call_count = qemu_get_byte(f); in android_modem_state_load()
566 call->dir = qemu_get_byte( f ); in android_modem_state_load()
567 call->state = qemu_get_byte( f ); in android_modem_state_load()
568 call->mode = qemu_get_byte( f ); in android_modem_state_load()