Lines Matching refs:whatptr
487 const char *whatptr; in Curl_cookie_add() local
527 whatptr = what; in Curl_cookie_add()
528 while(*whatptr && ISBLANK(*whatptr)) in Curl_cookie_add()
529 whatptr++; in Curl_cookie_add()
552 co->value = strdup(whatptr); in Curl_cookie_add()
586 strstore(&co->path, whatptr); in Curl_cookie_add()
604 if('.' == whatptr[0]) in Curl_cookie_add()
605 whatptr++; /* ignore preceding dot */ in Curl_cookie_add()
613 if(bad_domain(whatptr)) in Curl_cookie_add()
617 is_ip = isip(domain ? domain : whatptr); in Curl_cookie_add()
620 || (is_ip && !strcmp(whatptr, domain)) in Curl_cookie_add()
621 || (!is_ip && tailmatch(whatptr, domain))) { in Curl_cookie_add()
622 strstore(&co->domain, whatptr); in Curl_cookie_add()
637 whatptr); in Curl_cookie_add()
641 strstore(&co->version, whatptr); in Curl_cookie_add()
657 strstore(&co->maxage, whatptr); in Curl_cookie_add()
664 strstore(&co->expirestr, whatptr); in Curl_cookie_add()