Lines Matching refs:existing
3271 struct connectdata *existing) argument
3277 Curl_safefree(existing->user);
3278 Curl_safefree(existing->passwd);
3279 existing->user = temp->user;
3280 existing->passwd = temp->passwd;
3286 existing->bits.proxy_user_passwd = temp->bits.proxy_user_passwd;
3287 if(existing->bits.proxy_user_passwd) {
3289 Curl_safefree(existing->http_proxy.user);
3290 Curl_safefree(existing->socks_proxy.user);
3291 Curl_safefree(existing->http_proxy.passwd);
3292 Curl_safefree(existing->socks_proxy.passwd);
3293 existing->http_proxy.user = temp->http_proxy.user;
3294 existing->socks_proxy.user = temp->socks_proxy.user;
3295 existing->http_proxy.passwd = temp->http_proxy.passwd;
3296 existing->socks_proxy.passwd = temp->socks_proxy.passwd;
3318 Curl_free_idnconverted_hostname(&existing->host);
3319 Curl_free_idnconverted_hostname(&existing->conn_to_host);
3320 Curl_safefree(existing->host.rawalloc);
3321 Curl_safefree(existing->conn_to_host.rawalloc);
3322 existing->host = temp->host;
3325 existing->conn_to_host = temp->conn_to_host;
3327 existing->conn_to_port = temp->conn_to_port;
3328 existing->remote_port = temp->remote_port;
3329 Curl_safefree(existing->hostname_resolve);
3331 existing->hostname_resolve = temp->hostname_resolve;
3335 existing->bits.reuse = TRUE; /* yes, we are reusing here */
3361 struct connectdata *existing = NULL; local
3594 reuse = ConnectionExists(data, conn, &existing, &force_reuse, &waitpipe);
3602 reuse_conn(data, conn, existing);
3603 conn = existing;