Lines Matching refs:url
126 /* Stores current/last url, if any. */
127 char* url;
192 char url[PATH_MAX];
225 const char *url = NULL;
227 CURLINFO_EFFECTIVE_URL, &url);
228 if (curl_res == CURLE_OK && url)
230 free (d->client->url);
231 d->client->url = strdup(url); /* ok if fails */
514 const char* url = debuginfod_get_url (c);
519 if (url != NULL)
521 const char* buildid = strstr(url, "buildid/");
523 len = (buildid - url);
525 len = strlen(url);
528 if (b == 0 || url==NULL) /* early stage */
534 len, url, a);
538 len, url, a, b);
885 free (c->url);
886 c->url = NULL;
1177 /* PR 27983: If the url is already set to be used use, skip it */
1202 dprintf(vfd, "duplicate url: %s, skipping\n", tmp_url);
1302 /* PR28034 escape characters in completed url to %hh format. */
1303 snprintf(data[i].url, PATH_MAX, "%s/%s/%s/%s", server_url,
1307 snprintf(data[i].url, PATH_MAX, "%s/%s/%s/%s", server_url,
1310 snprintf(data[i].url, PATH_MAX, "%s/%s/%s", server_url, build_id_bytes, type);
1312 dprintf (vfd, "url %d %s\n", i, data[i].url);
1332 curl_easy_setopt_ck(data[i].handle, CURLOPT_URL, data[i].url);
1434 dprintf (vfd, "%scommitted to url %d\n", pnl ? "\n" : "",
1553 dprintf (vfd, "url %d %s\n", i, data[i].errbuf);
1625 url with upper case SCHEME added in the front;
1627 of scheme if the original url doesn't include one;
1859 return client->url;
1877 free (client->url);