Home | History | Annotate | Download | only in examples

Lines Matching refs:put

165    - Put what to append in the foo.add file so that the operation can be
503 uint put;
517 put = (MAX_STORE << 10) - log->stored;
518 if (put > len)
519 put = (uint)len;
520 if (put) {
521 if (write(log->fd, data, put) != put)
524 log->tcrc = crc32(log->tcrc, data, put);
525 log->tlen += put;
526 log->stored += put;
527 data += put;
528 len -= put;