Lines Matching defs:url
47 free(j->url);
68 log_info("Download of %s complete.", j->url);
107 log_error("HTTP request to %s failed with code %li.", j->url, status);
111 log_error("HTTP request to %s finished with unexpected code %li.", j->url, status);
145 log_debug("SHA256 of %s is %s.", j->url, j->checksum);
159 if (j->url)
160 (void) fsetxattr(j->disk_fd, "user.source_url", j->url, strlen(j->url), 0);
443 log_info("Downloading %s for %s.", format_bytes(bytes, sizeof(bytes), j->content_length), j->url);
499 j->url,
503 log_info("Got %u%% of %s.", percent, j->url);
515 int pull_job_new(PullJob **ret, const char *url, CurlGlue *glue, void *userdata) {
518 assert(url);
534 j->url = strdup(url);
535 if (!j->url)
555 r = curl_glue_make(&j->curl, j->url, j);