tag | line | file | source code |
---|---|---|---|
bp_tail | 24 | net/unix.c | int bp_head, bp_tail; |
bp_tail | 39 | net/unix.c | #define UN_BUF_AVAIL(UPD) (((UPD)->bp_head - (UPD)->bp_tail) & (BUF_SIZE-1)) |
bp_tail | 125 | net/unix.c | upd->bp_head = upd->bp_tail = 0; |
bp_tail | 150 | net/unix.c | upd->bp_head = upd->bp_tail = 0; |
bp_tail | 429 | net/unix.c | if (cando > (part = BUF_SIZE - upd->bp_tail)) |
bp_tail | 434 | net/unix.c | memcpy_tofs(ubuf, upd->buf + upd->bp_tail, cando); |
bp_tail | 435 | net/unix.c | upd->bp_tail = (upd->bp_tail + cando) & (BUF_SIZE-1); |