Lines Matching refs:lineptr
800 const char *lineptr, in parse_netscape() argument
819 if(strncmp(lineptr, "#HttpOnly_", 10) == 0) { in parse_netscape()
820 lineptr += 10; in parse_netscape()
824 if(lineptr[0]=='#') in parse_netscape()
829 ptr = strchr(lineptr, '\r'); in parse_netscape()
832 ptr = strchr(lineptr, '\n'); in parse_netscape()
837 firstptr = Curl_strtok_r((char *)lineptr, "\t", &tok_buf); in parse_netscape()
1100 const char *lineptr, /* first character of the line */ in Curl_cookie_add() argument
1123 rc = parse_cookie_header(data, co, ci, lineptr, domain, path, secure); in Curl_cookie_add()
1125 rc = parse_netscape(co, ci, lineptr, secure); in Curl_cookie_add()
1257 char *lineptr = Curl_dyn_ptr(&buf); in Curl_cookie_init() local
1259 if(checkprefix("Set-Cookie:", lineptr)) { in Curl_cookie_init()
1261 lineptr += 11; in Curl_cookie_init()
1263 while(*lineptr && ISBLANK(*lineptr)) in Curl_cookie_init()
1264 lineptr++; in Curl_cookie_init()
1267 Curl_cookie_add(data, ci, headerline, TRUE, lineptr, NULL, NULL, TRUE); in Curl_cookie_init()