Lines Matching refs:p
146 const char *p = header; in Curl_hsts_parse() local
160 while(*p && ISBLANK(*p)) in Curl_hsts_parse()
161 p++; in Curl_hsts_parse()
162 if(strncasecompare("max-age", p, 7)) { in Curl_hsts_parse()
170 p += 7; in Curl_hsts_parse()
171 while(*p && ISBLANK(*p)) in Curl_hsts_parse()
172 p++; in Curl_hsts_parse()
173 if(*p++ != '=') in Curl_hsts_parse()
175 while(*p && ISBLANK(*p)) in Curl_hsts_parse()
176 p++; in Curl_hsts_parse()
178 if(*p == '\"') { in Curl_hsts_parse()
179 p++; in Curl_hsts_parse()
182 offt = curlx_strtoofft(p, &endp, 10, &expires); in Curl_hsts_parse()
188 p = endp; in Curl_hsts_parse()
190 if(*p != '\"') in Curl_hsts_parse()
192 p++; in Curl_hsts_parse()
196 else if(strncasecompare("includesubdomains", p, 17)) { in Curl_hsts_parse()
200 p += 17; in Curl_hsts_parse()
205 while(*p && (*p != ';')) in Curl_hsts_parse()
206 p++; in Curl_hsts_parse()
209 while(*p && ISBLANK(*p)) in Curl_hsts_parse()
210 p++; in Curl_hsts_parse()
211 if(*p == ';') in Curl_hsts_parse()
212 p++; in Curl_hsts_parse()
213 } while(*p); in Curl_hsts_parse()
438 char *p = host; in hsts_add() local
441 if(p[0] == '.') { in hsts_add()
442 p++; in hsts_add()
446 e = Curl_hsts(h, p, subdomain); in hsts_add()
448 result = hsts_create(h, p, subdomain, expires); in hsts_add()
449 else if(strcasecompare(p, e->host)) { in hsts_add()