Lines Matching refs:URL

1380 http_connect(struct url *URL, struct url *purl, const char *flags)  in http_connect()  argument
1405 curl = (purl != NULL) ? purl : URL; in http_connect()
1411 if (strcasecmp(URL->scheme, SCHEME_HTTPS) == 0 && purl) { in http_connect()
1413 URL->host, URL->port); in http_connect()
1415 URL->host, URL->port); in http_connect()
1439 if (strcasecmp(URL->scheme, SCHEME_HTTPS) == 0 && in http_connect()
1440 fetch_ssl(conn, URL, verbose) == -1) { in http_connect()
1527 http_request(struct url *URL, const char *op, struct url_stat *us, in http_request() argument
1531 return (http_request_body(URL, op, us, purl, flags, NULL, NULL)); in http_request()
1541 http_request_body(struct url *URL, const char *op, struct url_stat *us, in http_request_body() argument
1578 url = URL; in http_request_body()
1620 if (purl && strcasecmp(URL->scheme, SCHEME_HTTPS) != 0) { in http_request_body()
1952 if (url != URL) in http_request_body()
1995 if (URL->offset > 0 && offset > URL->offset) { in http_request_body()
2001 URL->offset = offset; in http_request_body()
2002 URL->length = clength; in http_request_body()
2010 if (url != URL) in http_request_body()
2026 if (url != URL) in http_request_body()
2047 fetchXGetHTTP(struct url *URL, struct url_stat *us, const char *flags) in fetchXGetHTTP() argument
2049 return (http_request(URL, "GET", us, http_get_proxy(URL, flags), flags)); in fetchXGetHTTP()
2056 fetchGetHTTP(struct url *URL, const char *flags) in fetchGetHTTP() argument
2058 return (fetchXGetHTTP(URL, NULL, flags)); in fetchGetHTTP()
2065 fetchPutHTTP(struct url *URL __unused, const char *flags __unused) in fetchPutHTTP()
2075 fetchStatHTTP(struct url *URL, struct url_stat *us, const char *flags) in fetchStatHTTP() argument
2079 f = http_request(URL, "HEAD", us, http_get_proxy(URL, flags), flags); in fetchStatHTTP()
2100 fetchReqHTTP(struct url *URL, const char *method, const char *flags, in fetchReqHTTP() argument
2104 return (http_request_body(URL, method, NULL, http_get_proxy(URL, flags), in fetchReqHTTP()