Lines Matching refs:cc
159 int cmplen, cc; in sohashttpget() local
162 cc = sbavail(&so->so_rcv) - 1; in sohashttpget()
163 if (cc < 1) in sohashttpget()
175 if (cc < cmplen) { in sohashttpget()
176 if (mbufstrncmp(m, m->m_nextpkt, 1, cc, cmp) == 1) { in sohashttpget()
177 DPRINT("short cc (%d) but mbufstrncmp ok", cc); in sohashttpget()
180 DPRINT("short cc (%d) mbufstrncmp failed", cc); in sohashttpget()
203 int i, cc, spaces, inspaces; in soparsehttpvers() local
209 cc = sbavail(&so->so_rcv); in soparsehttpvers()
214 for (i = 0; i < m->m_len; i++, cc--) { in soparsehttpvers()
239 if (cc < sizeof("HTTP/1.0") - 1) { in soparsehttpvers()
240 if (mbufstrncmp(m, n, i, cc, in soparsehttpvers()