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

/macosx-10.10.1/rsync-45/rsync/
H A Dfileio.c80 static size_t wf_writeBufCnt; variable
87 while (wf_writeBufCnt > 0) {
88 if ((ret = write(f, bp, wf_writeBufCnt)) < 0) {
93 wf_writeBufCnt -= ret;
116 wf_writeBufCnt = 0;
121 r1 = MIN(len, wf_writeBufSize - wf_writeBufCnt);
123 memcpy(wf_writeBuf + wf_writeBufCnt, buf, r1);
124 wf_writeBufCnt += r1;
126 if (wf_writeBufCnt == wf_writeBufSize) {

Completed in 124 milliseconds