Searched refs:copy_bytes (Results 1 – 3 of 3) sorted by relevance
/freebsd/sys/contrib/vchiq/interface/vchiq_arm/ |
H A D | vchiq_arm.c | 1376 int copy_bytes; in vchiq_dump() local 1385 copy_bytes = min(len, (int)(context->space - context->actual)); in vchiq_dump() 1386 if (copy_bytes == 0) in vchiq_dump() 1388 memcpy(context->buf + context->actual, str, copy_bytes); in vchiq_dump() 1389 context->actual += copy_bytes; in vchiq_dump() 1390 len -= copy_bytes; in vchiq_dump() 1395 if ((len == 0) && (str[copy_bytes - 1] == '\0')) { in vchiq_dump()
|
/freebsd/contrib/tnftp/src/ |
H A D | ftp.c | 584 copy_bytes(int infd, int outfd, char *buf, size_t bufsize, in copy_bytes() function 790 c = copy_bytes(fileno(fin), fileno(dout), buf, bufsize, in sendrequest() 1055 c = copy_bytes(fileno(din), fileno(fout), buf, bufsize, in recvrequest()
|
/freebsd/contrib/tnftp/ |
H A D | ChangeLog | 221 - Implement copy_bytes() to copy bytes from one fd to another
|