Lines Matching refs:fcc
453 int pcc = 0, fcc = 0; in protocol() local
470 if (fcc) in protocol()
501 fcc = read(f, fibuf, sizeof(fibuf)); in protocol()
502 if (fcc < 0 && errno == EWOULDBLOCK) in protocol()
503 fcc = 0; in protocol()
508 if (fcc <= 0) in protocol()
513 for (cp = fibuf; cp < fibuf+fcc-1; cp++) in protocol()
516 left = fcc - (cp-fibuf); in protocol()
524 fcc -= n; in protocol()
531 if (set[0].revents & POLLOUT && fcc > 0) { in protocol()
532 cc = write(p, fbp, fcc); in protocol()
534 fcc -= cc; in protocol()