Lines Matching refs:lineptr
39 char *lineptr, const char *domain, const char *path,
42 The 'lineptr' parameter is a full "Set-cookie:" line as
485 const char *lineptr, /* first character of the line */
516 size_t linelength = strlen(lineptr);
523 ptr = lineptr;
863 if(strncmp(lineptr, "#HttpOnly_", 10) == 0) {
864 lineptr += 10;
868 if(lineptr[0]=='#') {
874 ptr = strchr(lineptr, '\r');
877 ptr = strchr(lineptr, '\n');
881 firstptr = strtok_r((char *)lineptr, "\t", &tok_buf); /* tokenize on TAB */
1249 char *lineptr = line;
1253 lineptr = &line[11];
1255 while(*lineptr && ISBLANK(*lineptr))
1256 lineptr++;
1259 Curl_cookie_add(data, c, headerline, TRUE, lineptr, NULL, NULL, TRUE);