tag | line | file | source code |
---|---|---|---|
BUF_SIZE | 639 | net/unix/sock.c | if (cando >(part = BUF_SIZE - upd->bp_tail)) cando = part; |
BUF_SIZE | 648 | net/unix/sock.c | upd->bp_tail =(upd->bp_tail + cando) &(BUF_SIZE-1); |
BUF_SIZE | 724 | net/unix/sock.c | if (cando >(part = BUF_SIZE - pupd->bp_head)) cando = part; |
BUF_SIZE | 734 | net/unix/sock.c | pupd->bp_head =(pupd->bp_head + cando) &(BUF_SIZE-1); |
BUF_SIZE | 63 | net/unix/unix.h | (BUF_SIZE-1)) |
BUF_SIZE | 64 | net/unix/unix.h | #define UN_BUF_SPACE(UPD) ((BUF_SIZE-1) - UN_BUF_AVAIL(UPD)) |