Lines Matching defs:line
334 * Write this single hsts entry to a single output line
419 static CURLcode hsts_add(struct hsts *h, char *line)
429 rc = sscanf(line,
504 * Load the HSTS cache from the given file. The text based line-oriented file
514 char *line = NULL;
526 line = malloc(MAX_HSTS_LINE);
527 if(!line)
529 while(Curl_get_line(line, MAX_HSTS_LINE, fp)) {
530 char *lineptr = line;
539 free(line); /* free the line buffer */