Searched refs:writesize (Results 1 - 6 of 6) sorted by relevance

/freebsd-9.3-release/libexec/tftpd/
H A Dtftp-transfer.c163 int n_data, n_ack, writesize, i, retry; local
169 writesize = write_file(firstblock->th_data, fb_size);
170 ts->amount += writesize;
269 writesize = write_file(rp->th_data, n_data);
270 ts->amount += writesize;
271 if (writesize <= 0) {
273 "write_file returned %d", writesize);
274 if (writesize < 0)
/freebsd-9.3-release/contrib/libarchive/libarchive/test/
H A Dtest_tar_large.c222 size_t writesize; local
256 writesize = filedatasize;
257 if ((int64_t)writesize > filesize)
258 writesize = (size_t)filesize;
259 assertA((int)writesize
260 == archive_write_data(a, filedata, writesize));
261 filesize -= writesize;
/freebsd-9.3-release/sbin/dump/
H A Dtape.c61 int writesize; /* size of malloc()ed buffer for tape */ variable
125 writesize = ntrec * TP_BSIZE;
134 tenths = writesize / density +
143 malloc((unsigned)(reqsiz + writesize + pgoff + TP_BSIZE));
253 if (got < writesize) {
324 if (got != writesize) {
489 if (got != writesize) {
809 while (eot_count < 10 && size < writesize) {
813 writesize-size);
817 writesize
[all...]
/freebsd-9.3-release/contrib/lukemftpd/src/
H A Dextern.h300 LLT writesize; /* data write size */ member in struct:ftpclass
H A Dconf.c123 curclass.writesize = 0;
388 } else if (strcasecmp(word, "writesize") == 0) {
389 curclass.writesize = 0;
390 CONF_LL(writesize, arg, 0, LLTMAX);
H A Dftpd.c2059 if (curclass.writesize) {
2060 if (curclass.writesize < c)
2061 c = curclass.writesize;
2166 syslog(LOG_INFO, "mmapsize = %ld, writesize = %ld",
2167 (long)winsize, (long)curclass.writesize);
2743 if (curclass.writesize)
2744 reply(0, "Write size: " LLF, (LLT)curclass.writesize);

Completed in 66 milliseconds