Lines Matching refs:path
372 char *path;
438 /* Parse the URL path */
713 if((strlen(req->path) + 1) > sizeof(msg.bytes))
719 byte_count = strlen(req->path);
731 strcpy(msg.bytes, req->path);
1164 char *path;
1167 /* URL decode the path */
1168 CURLcode result = Curl_urldecode(data->state.up.path, 0, &path, NULL,
1173 /* Parse the path for the share */
1174 smbc->share = strdup((*path == '/' || *path == '\\') ? path + 1 : path);
1175 free(path);
1186 failf(data, "missing share in URL path for SMB");
1190 /* Parse the path for the file path converting any forward slashes into
1193 req->path = slash;