Lines Matching defs:path
653 const char *path,
662 (void)path;
706 (const unsigned char *)path);
780 * @param path pointer to the requested path; should include query part
791 const char *path,
837 result = output_auth_headers(data, conn, authproxy, request, path, TRUE);
856 result = output_auth_headers(data, conn, authhost, request, path, FALSE);
881 const char *path,
888 (void)path;
2234 const char *path = data->state.up.path;
2238 path = data->set.str[STRING_TARGET];
2246 /* The path sent to the proxy is in fact the entire URL. But if the remote
2302 char *type = strstr(path, ";type=");
2328 result = Curl_dyn_add(r, path);
2790 co = Curl_cookie_getlist(data, data->cookies, host, data->state.up.path,
3148 pq = aprintf("%s?%s", data->state.up.path, data->state.up.query);
3153 (pq ? pq : data->state.up.path), FALSE);
3633 data->state.up.path, secure_context);
4601 const char *path, size_t p_len)
4624 if(path) {
4625 req->path = Curl_memdup0(path, p_len);
4626 if(!req->path)
4708 char *path, *query;
4713 path = query = NULL;
4716 uc = curl_url_get(url, CURLUPART_PATH, &path, CURLU_PATH_AS_IS);
4723 if(!path && !query) {
4724 req->path = NULL;
4726 else if(path && !query) {
4727 req->path = path;
4728 path = NULL;
4731 if(path) {
4732 result = Curl_dyn_add(&buf, path);
4741 req->path = strdup(Curl_dyn_ptr(&buf));
4742 if(!req->path)
4748 free(path);
4803 free(req->path);
4886 if(!result && req->path) {
4888 req->path, strlen(req->path));