HomeSort by relevance Sort by last modified time
    Searched refs:outbuf_index (Results 1 - 2 of 2) sorted by null

  /external/qemu/
monitor-android.h 42 mon->fake_func(mon->fake_opaque, (void*)mon->outbuf, mon->outbuf_index);
43 mon->outbuf_index = 0;
44 mon->fake_count += mon->outbuf_index;
46 qemu_chr_write(mon->chr, mon->outbuf, mon->outbuf_index);
47 mon->outbuf_index = 0;
monitor.c 83 int outbuf_index; member in struct:Monitor
175 if (mon && mon->outbuf_index != 0 && !mon->mux_out) {
176 qemu_chr_write(mon->chr, mon->outbuf, mon->outbuf_index);
177 mon->outbuf_index = 0;
195 mon->outbuf[mon->outbuf_index++] = '\r';
196 mon->outbuf[mon->outbuf_index++] = c;
197 if (mon->outbuf_index >= (sizeof(mon->outbuf) - 1)
    [all...]

Completed in 17 milliseconds