Lines Matching defs:line_start
244 char *line_start;
247 line_start = ptr;
344 result = Curl_convert_from_network(data, line_start,
353 line_start, (size_t)perline, conn);
360 result = Curl_client_write(conn, writetype, line_start,
373 if(('\r' == line_start[0]) ||
374 ('\n' == line_start[0])) {
407 if(line_start[1] == '\n') {
410 line_start++;
416 r = Curl_httpchunk_read(conn, line_start+1,
452 letter = line_start[perline];
453 line_start[perline]=0; /* zero terminate the buffer */
454 if((checkprefix("WWW-Authenticate:", line_start) &&
456 (checkprefix("Proxy-authenticate:", line_start) &&
460 char *auth = Curl_copy_header_value(line_start);
471 else if(checkprefix("Content-Length:", line_start)) {
472 cl = curlx_strtoofft(line_start +
475 else if(Curl_compareheader(line_start,
478 else if(Curl_compareheader(line_start,
486 else if(Curl_compareheader(line_start,
489 else if(2 == sscanf(line_start, "HTTP/1.%d %d",
496 line_start[perline]= letter;
499 line_start = ptr+1; /* this skips the zero byte we wrote */