HomeSort by relevance Sort by last modified time
    Searched defs:sb_cc (Results 1 - 4 of 4) sorted by null

  /external/qemu/slirp/
sbuf.h 11 #define sbflush(sb) sbdrop((sb),(sb)->sb_cc)
12 #define sbspace(sb) ((sb)->sb_datalen - (sb)->sb_cc)
15 u_int sb_cc; /* actual chars in buffer */ member in struct:sbuf
slirp.c 305 if (CONN_CANFSEND(so) && so->so_rcv.sb_cc) {
314 if (CONN_CANFRCV(so) && (so->so_snd.sb_cc < (so->so_snd.sb_datalen/2))) {
845 if (!CONN_CANFRCV(so) || so->so_snd.sb_cc >= (so->so_snd.sb_datalen/2))
917 qemu_put_be32(f, sbuf->sb_cc);
1009 uint32_t off, sb_cc, sb_datalen; local
1011 sb_cc = qemu_get_be32(f);
1019 sbuf->sb_cc = sb_cc;
  /external/qemu/slirp-android/
sbuf.h 11 #define sbflush(sb) sbdrop((sb),(sb)->sb_cc)
12 #define sbspace(sb) ((sb)->sb_datalen - (sb)->sb_cc)
15 u_int sb_cc; /* actual chars in buffer */ member in struct:sbuf
slirp.c 371 if (CONN_CANFSEND(so) && so->so_rcv.sb_cc) {
380 if (CONN_CANFRCV(so) && (so->so_snd.sb_cc < (so->so_snd.sb_datalen/2))) {
1412 uint32_t off, sb_cc, sb_datalen; local
    [all...]

Completed in 49 milliseconds