Home | History | Annotate | Download | only in lib

Lines Matching defs:lineptr

36                  struct CookieInfo *c, bool httpheader, char *lineptr,
39 The 'lineptr' parameter is a full "Set-cookie:" line as
371 char *lineptr, /* first character of the line */
410 semiptr=strchr(lineptr, ';'); /* first, find a semicolon */
412 while(*lineptr && ISBLANK(*lineptr))
413 lineptr++;
415 ptr = lineptr;
672 if(strncmp(lineptr, "#HttpOnly_", 10) == 0) {
673 lineptr += 10;
677 if(lineptr[0]=='#') {
683 ptr=strchr(lineptr, '\r');
686 ptr=strchr(lineptr, '\n');
690 firstptr=strtok_r(lineptr, "\t", &tok_buf); /* tokenize it on the TAB */
954 char *lineptr;
963 lineptr=&line[11];
967 lineptr=line;
970 while(*lineptr && ISBLANK(*lineptr))
971 lineptr++;
973 Curl_cookie_add(data, c, headerline, lineptr, NULL, NULL);