Lines Matching refs:aptr

310   Curl_safefree(data->state.aptr.proxyuserpwd);  in Curl_close()
312 Curl_safefree(data->state.aptr.uagent); in Curl_close()
313 Curl_safefree(data->state.aptr.userpwd); in Curl_close()
314 Curl_safefree(data->state.aptr.accept_encoding); in Curl_close()
315 Curl_safefree(data->state.aptr.te); in Curl_close()
316 Curl_safefree(data->state.aptr.rangeline); in Curl_close()
317 Curl_safefree(data->state.aptr.ref); in Curl_close()
318 Curl_safefree(data->state.aptr.host); in Curl_close()
320 Curl_safefree(data->state.aptr.cookiehost); in Curl_close()
323 Curl_safefree(data->state.aptr.rtsp_transport); in Curl_close()
325 Curl_safefree(data->state.aptr.user); in Curl_close()
326 Curl_safefree(data->state.aptr.passwd); in Curl_close()
328 Curl_safefree(data->state.aptr.proxyuser); in Curl_close()
329 Curl_safefree(data->state.aptr.proxypasswd); in Curl_close()
1358 conn->bits.proxy_user_passwd = !!data->state.aptr.proxyuser; in allocate_conn()
1863 if(!data->state.aptr.passwd || (data->state.creds_from != CREDS_OPTION)) {
1873 result = Curl_setstropt(&data->state.aptr.passwd, decoded);
1882 if(!data->state.aptr.user || (data->state.creds_from != CREDS_OPTION)) {
1895 result = Curl_setstropt(&data->state.aptr.user, decoded);
2235 result = Curl_setstropt(&data->state.aptr.proxyuser, proxyuser);
2248 result = Curl_setstropt(&data->state.aptr.proxypasswd, proxypasswd);
2344 const char *proxyuser = data->state.aptr.proxyuser ?
2345 data->state.aptr.proxyuser : "";
2346 const char *proxypasswd = data->state.aptr.proxypasswd ?
2347 data->state.aptr.proxypasswd : "";
2694 if(data->state.aptr.user &&
2698 userp = &data->state.aptr.user;
2749 if(data->state.aptr.user != *userp) {
2751 result = Curl_setstropt(&data->state.aptr.user, *userp);
2757 if(data->state.aptr.user) {
2758 uc = curl_url_set(data->state.uh, CURLUPART_USER, data->state.aptr.user,
2763 *userp = strdup(data->state.aptr.user);
2769 CURLcode result = Curl_setstropt(&data->state.aptr.passwd, *passwdp);
2774 if(data->state.aptr.passwd) {
2776 data->state.aptr.passwd, CURLU_URLENCODE);
2780 *passwdp = strdup(data->state.aptr.passwd);
2800 if((conn->handler->flags & PROTOPT_NEEDSPWD) && !data->state.aptr.user)